Apr 9, 2022
Quick and dirty way to convert an existing Angular project to SASS
- Create a new app that has sass “ng new my-sassy-app — style=scss”
- copy paste angular.json to the angular project that needs SASS
- See source control, and only keep the changes that mention sass (scss)
- Convert all .css files to .scss
- Update component.ts styleUrls .css to .scss
- Run the project. Everything should be working.