Performance: Production vs development builds
HIGH IMPACT
This affects the CSS file size and how quickly styles are applied during page load.
sass styles.scss styles.css --style compressed --no-source-map
sass --watch styles.scss styles.css --style expanded --source-map
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Development build (expanded, with source maps) | No change | No change | Higher due to delayed style application | [X] Bad |
| Production build (compressed, no source maps) | No change | No change | Lower due to faster style application | [OK] Good |