Folder Structure 📁
Understand folder structure of Quasar Prime and everything contains with description.
TIP
If you are a beginner, all you’ll need to care about is the /quasar.config file (Quasar App Config file), /src/router, /src/layouts, /src/pages and optionally /src/assets.
.
|-- README.md
|-- index.html
|-- jsconfig.json
|-- package-lock.json
|-- package.json
|-- postcss.config.cjs
|-- public
|-- quasar.config.js
-- src
|-- App.vue
|-- assets
|-- boot
|-- components
|-- css
| |-- app.scss
| |-- font
| -- quasar.variables.scss
|-- i18n
| |-- en-US
| | -- index.js
| |-- es
| | -- index.js
| -- index.js
|-- layouts
| -- MainLayout.vue
|-- pages
|-- router
| |-- index.js
| -- routes.js
-- stores
More details https://quasar.dev/quasar-cli-webpack/directory-structure/