I started an NG2 app and wanna add font awesome. I npm installed it with : npm install --save font-awesome angular2-font-awesome. I added to project in systemjs.config.js:>
Try to use this method:
Firstly install font awesome using command : npm install --save font-awesome angular-font-awesome
secondly, import it in your style.scss file with
$fa-font-path: "../node_modules/font-awesome/fonts";
@import "../node_modules/font-awesome/scss/font-awesome.scss";
or to your style.css file with
@import '~font-awesome/css/font-awesome.css';
command. The fonts are ready to use.
Now place your font in any html file.