Any way to just grab the output css from the import?
mr-rodgers opened this issue · 1 comments
mr-rodgers commented
Similar to how plugin-text does it. This is useful for angular2, where injecting directly into the head has no effect. Instead, you do something like:
import styleText from './path/to/file.scss!';
@Component({
...
styles: [styleText]
})
export class Component { }
screendriver commented
Dup of #31