Nuxt 3 template repository
Make sure to have installed right version of Node.js in nvm
nvm use
Don't forget to install the dependencies:
yarn install
Linting all .js
, .vue
and .md
files:
yarn lint
# Lint with fix
yarn lint:fix
yarn test
# Run tests in watch mode
yarn test:watch
# Run tests in UI mode
yarn test:ui
# Run tests with coverage report
yarn test:coverage
# Run e2e tests
yarn test:e2e
Start the development server on http://localhost:3000
yarn dev
Build the application for production:
yarn build
Locally preview production build:
yarn preview