I\'m trying to use the angular2-busy library in an angular project created with the CLI, but am having an issue importing the stylesheet:
angular2-busy
Angular CLI have it's own way to initialize your global css/js.
They are located in .angular-cli.json configuration
.angular-cli.json
Locate "styles": and add your css there
"styles":
Example :
"styles": [ "../node_modules/angular2-busy/build/style/busy.css", "styles.css" ],
Hope that helps.