0

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?

Edric
  • 24,639
  • 13
  • 81
  • 91
amaclean
  • 69
  • 1
  • 6

1 Answers1

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