InterviewSolution
Saved Bookmarks
| 1. |
How can I include SASS into an Angular project? |
|
Answer» You may 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 |
|