Folder structure #17781
-
Hi, I noticed that there is a static structure described here https://quasar.dev/quasar-cli-vite/directory-structure/ A couple of questions:
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
These are the only mandatory files(mode-specific ones are only mandatory if using the mode):
The rest of the files/directories are mainly for convenience. For example, So, as for your questions:
|
Beta Was this translation helpful? Give feedback.
These are the only mandatory files(mode-specific ones are only mandatory if using the mode):
https://quasar.dev/quasar-cli-vite/quasar-config-file#sourcefiles
src/css/quasar.variables.scss
is another case, but it's not configurable yet, unfortunately.The rest of the files/directories are mainly for convenience. For example,
quasar new page xyz
would createsrc/pages/xyz.vue
.quasar.config file > boot
expects boot files to exist there, but you can do~src/modules/foo/boot/whatever
where anything after the~
prefix is a valid import path(can use aliases, npm packages, etc.).So, as for your questions: