Create a Vue app running on Vite
Vue developers have been using Vue CLI to compile their projects, but this comes with some disadvantages. For example, you have to wait until the entire app is bundled before you can start developing, which can make cold server start very slow. Additionally, larger projects can suffer from slow Hot Module Replacement (HMR). Vite tackles these issues by compiling code on-demand and only compiling the code imported on the current screen. Plus, HMR performance is decoupled from the total number of modules, so it's always quick no matter how big your app is.


Reacties
Een reactie posten