I'm trying to have print-styles.scss compiled in css and put into assets folder by angular compiler.
I need it for injecting styles into an iframe that should print some contents.
The problem is that in angular.json
styles: [{
"input": "projects/public/src/print-styles.scss",
"lazy": true,
"bundleName": "print-styles-hello"
}]
results in JS file which I don't know how to use.
I don't want to use any Gulp or other additional tools.