I'm trying to install bootstrap-material-icons on my angular 2 application, but the icons aren't displays, like the module isn't installed.
I have followed (as always) the instructions from this site, but i have two doubts:
1) First of all, because of the npm installation on my project, that is based on an angular-cli installation, the css folder of bootstrap-material is in:
/node_modules/bootstrap-material-design-icons/css/material-icons.css
and so i have tried to change the relative link to the css, to the folder where the css is present, but nothing happens.
2) I have tried, in second instance to add the css to the styles object inside the angular-cli.json in this way:
.....
"styles": [
"paper.css",
"styles.css",
"style_genioimprese.css"
"../node_modules/bootstrap-material-design-icons/css/material-icons.css"
],.....
but even in this way doesn't work and to me (but i want to know if i'm right) that's a way that can't work, because when i build the application, angular-cli will recover the css but it would left behind all the other bootstrap material-icons element that he will need like the font folder, where all the glypicon are placed.