|
|
|
|
|
by dmix
1492 days ago
|
|
I use a vue dev server daily (both with webpack previously and now with the way faster vite) and it's pretty much instant. These projects only recompile the code that changes, then via chunking the browser only reloads a tiny specific .js file that contained that one component matching the vue-route, so usually 10-30kb refresh (and it loads about ~10x small .js files per page), which happens before I can tab back or notice when widescreened. Previously when I used the slower Webpack without chunking it started to take time when the project grew large. But that was long ago (3 years ago?). |
|