Performance: Incremental builds with data
MEDIUM IMPACT
This affects page load speed by reducing build time and improving how quickly updated content appears on the site.
astro build --incremental
// Only rebuilds pages with changed dataastro build --no-incremental // Rebuilds entire site every time data changes
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Full rebuild on data change | N/A (build time only) | N/A | Delays initial paint | [X] Bad |
| Incremental build with data tracking | N/A (build time only) | N/A | Faster initial paint due to quicker build | [OK] Good |