It seems like I might be overlooking something very straightforward here.
After a fresh installation of angular-cli, I created a new website with SCSS. I input the SCSS in the global style.scss as well as some in a component SCSS file.
However, when I serve or build the website, those CSS styles are being inlined instead of being externally included, which is not what I expected or need.
In addition, the component-level SCSS cannot access variables defined in the global style.scss file (I may have misunderstood this).
How can I use SCSS to produce an external CSS file for delivery?
Thank you! Paul