Actually I got a stylesheet:
<link href="../node_modules/@angular/material/core/theming/prebuilt/indigo-pink.css" rel="stylesheet">
That file exist, the Webstorm also sees that file in the directory, but somehow Angular2 is unable to load it.
Error: GET http://localhost:4200/node_modules/@angular/material/core/theming/prebuilt/indigo-pink.css
How to make Angular2 load that file? Thanks for any further informations.
The root looks like:
-Main folder
--node_modules
---stuff
--src
---index.html
---styles.css
EDIT
On mithunvp.com/angular-material-2-angular-cli-webpack/ there's a hint to use
@import '~https://fonts.googleapis.com/icon?family=Material+Icons';
@import '~@angular/material/core/theming/prebuilt/deeppurple-amber.css';
to turn on a prebuilt theme. But once again, even if it's pasted inside the styles.css it returns errors that it cant find it. It cant even find the Material icons, which is a link...
