I made my theme.scss file and put it in src where it is supposed to be and then added it to the angular-cli.json file, but then what? Where is the css file that is supposed to be compiled?
Asked
Active
Viewed 209 times
1 Answers
0
You should install sass in order to generate the final css files you're looking for. Once installed you can run:
sass input.scss output.css
and you can read more about it here.

elvin
- 961
- 1
- 9
- 26
-
But I don't want to install it. Angular says it will compile it on its own. – amaclean May 01 '17 at 18:01