Performance: SASS vs SCSS syntax difference
LOW IMPACT
This affects preprocessing parsing and build speed slightly due to syntax complexity and source file size differences.
@import 'variables'; body { font-size: 1rem; color: #333; }
@import 'variables' body font-size: 1rem color: #333
| Pattern | Parsing Complexity | Build Time Impact | Runtime Impact | Verdict |
|---|---|---|---|---|
| SASS (Indented syntax) | Medium (indentation sensitive) | Slightly higher | None | [!] OK |
| SCSS (CSS-like syntax) | Low (familiar braces/semicolons) | Lower | None | [OK] Good |