Performance: @import to @use migration
MEDIUM IMPACT
This affects CSS build time and runtime style calculation by improving modularity and reducing redundant style processing.
@use 'variables' as *; @use 'mixins';
@import 'variables'; @import 'mixins'; @import 'variables';
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| @import repeated modules | N/A | N/A | Higher due to larger CSS | [X] Bad |
| @use single module import | N/A | N/A | Lower due to smaller CSS | [OK] Good |