I am embarking on my journey with Angular 4 and have successfully set up my project using Angular CLI. Now, I find myself wondering about the process of compiling an existing style.sass
file into style.css
, especially since the CLI utilizes webpack
as its default mechanism.
Within my angular-cli.json
, I have specified default styles: sass
. However, I am uncertain about the next steps to take from here. I am aware that webpack offers a feature known as loaders
for compiling languages like sass
, but I am unsure how to integrate this within my Angular 4 CLI project.