Replies: 1 comment
-
I am not sure for the assets part, for the html you can use the
vite.config.ts:
(not sure about the exact types of _path and routes parameters though) But, remember that the vue router will still only consider the path If you want them all to be index.html files in their separate directories which works nicely with standard static file servers (as
|
Beta Was this translation helpful? Give feedback.
0 replies
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
Hello, how can I edit my
vite.config
build configuration to build each route defined inpages/
to its own folder indist/
? Thank you very much.# pages/ ├── pages │ ├── landing │ │ └── index.vue │ └── summary │ └── index.vue
# desired dist/ output dist ├── landing │ ├── assets/ │ ├── landing.html ├── summary │ ├── assets/ │ ├── summary.html
Beta Was this translation helpful? Give feedback.
All reactions