-
Hello, I have a How can I improve loading performance for component with many suid imports? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a Vite issue. When you are in development mode, each import is fetched individually. This is neccesary for live reloading, among other things. If you build the project in production mode, the imports will be optimized in chunks for avoiding those requests. |
Beta Was this translation helpful? Give feedback.
This is a Vite issue.
When you are in development mode, each import is fetched individually. This is neccesary for live reloading, among other things.
If you build the project in production mode, the imports will be optimized in chunks for avoiding those requests.