This example template was scaffolded using nuxt-with-typescript-example-template and this template adds vuetify3.
Make sure you have installed Node.js 18 or higher on your machine. You can use nvm to manage multiple node version on your machine.
You can setup this project using npm or yarn or pnpm package managers.
# https
git clone https://github.com/binodnepali/nuxt-with-vuetify-example-template.git
# or
# ssh
git clone git@github.com:binodnepali/nuxt-with-vuetify-example-template.gitcd nuxt-with-vuetify-example-templateMake sure to install the dependencies:
# pnpm
pnpm i
# or
# yarn
yarn i
# or
# npm
npm installStart the development server on http://localhost:3000
# pnpm
pnpm dev
# or
# yarn
yarn dev
# or
# npm
npm run devBuild the application for production
# pnpm
pnpm build
# or
# yarn
yarn build
# or
# npm
npm run buildLocally preview production build
# pnpm
pnpm i
# or
# yarn
yarn preview
# or
# npm
npm run preview# pnpm
pnpm lint
# or
# yarn
yarn lint
# or
# npm
npm run lint# pnpm
pnpm lint:fix
# or
# yarn
yarn lint:fix
# or
# npm
npm run lint:fix# pnpm
pnpm lint:style
# or
# yarn
yarn lint:style
# or
# npm
npm run lint:style# pnpm
pnpm lint:style:fix
# or
# yarn
yarn lint:style:fix
# or
# npm
npm run lint:style:fixOpen interactive terminal to write conventional commit message
# pnpm
pnpm commit
# or
# yarn
yarn commit
# or
# npm
npm run commitCreate a release tag and generates change log based on commit history
# pnpm
pnpm release
# or
# yarn
yarn release
# or
# npm
npm run release- Checkout the deployment documentation for more information.