Search
⌘ K
Development
To launch the project in development mode, simply run the command:
npm run dev
If you are within a VUE
project, the template will be accessible at the address http://localhost:5173
.
Otherwise, if the command is run in a NUXT
project, I could visit the template at the address http://localhost:3000
.
You will also have a ready-made structure available to implement your unit/end-to-end tests and lint check. The commands to run these tests are:
Run Unit Tests with Vitest
npm run test:unit
Run End-to-End Tests with Cypress
npm run build
npm run test:e2e # or `npm run test:e2e:dev` for preview mode
Lint with ESLint
npm run lint