Performance: Vue CLI and Vite setup
MEDIUM IMPACT
This affects how fast the development server starts and how quickly the app loads in the browser.
npm create vite@latest my-app -- --template vue cd my-app npm run dev
vue create my-app cd my-app npm run serve
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Vue CLI setup | N/A (build tool) | N/A | Higher initial paint delay due to bundled scripts | [X] Bad |
| Vite setup | N/A (build tool) | N/A | Lower initial paint delay with native modules and fast reload | [OK] Good |