This repository intend to give an easy start with a fully setup Nuxt-Bridge working with :
- Vuetify
- Pinia
- Typescript
- Axios
- Storybook
Before anything, do not forget to install the recommended extensions :
- ESLint
- Prettier - Code formatter
- TSLint
- TypeScript Vue Plugin (Volar) 🔫
- Vue Language Features (Volar) 🔫
(Bonus)
- Better Comments
- Error Lens
- Git Graph
- GitLens
Open your VSCode settings cmd
+ shift
+ p
and then, paste the following code into it
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# storybook
$ yarn storybook
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate