Performance: Deployment to static hosting
MEDIUM IMPACT
This affects the initial page load speed and how quickly users see the content after visiting the site.
vue build with production mode, minified assets, no source maps, deployed as static files on CDN or static host
vue build with full source maps and no minification, deployed on a slow server with dynamic rendering
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Dynamic server rendering with large bundles | High (complex DOM) | Multiple reflows due to JS execution | High paint cost | [X] Bad |
| Static hosting with minified bundles | Low (simple DOM from static files) | Single reflow on load | Low paint cost | [OK] Good |