0 votes
in Angular by
How can I include SASS into an Angular project?

1 Answer

0 votes
by

 use the ng new command while building your project using angular CLI. All of your components are generated using preset sass files.

ng new <Your_Project_Name> --style = sass

If you want to change the style of your project, use the ng set command.

ng set defaults.styleExt scss

...