Problem Statement
How do you add SASS/SCSS to an Angular project?
Explanation
When creating the project: `ng new app --style=scss`. For an existing app, run `ng config schematics.@schematics/angular:component.styleext scss` and update angular.json styles to point to .scss files. Component styles can directly use .scss files once the builder is configured.
Code Solution
SolutionRead Only
// angular.json (excerpt) "styles": [ "src/styles.scss" ]