Is it possible to reference a sass file instead of a css file directly in the index.html?
If so, how does webpack compile the sass into a css file? Additionally, what is the most effective way to bundle the sass file when building the application?
The versions I am utilizing are as follows:
webpack(3.5.5), angular/cli(1.4.1) and angular4
My directory structure is structured like this,
src
├--- assets
| ├--- sass
| | ├--- common.scss
| | ├--- base.scss
| | ├--- custom.scss
| ├--- css
| ├--- common.css
| ├--- base.css
| ├--- custom.css
|
├--- index.html
├--- .angular-cli.json