I have an application that I created using the Angular CLI, and I use bootstrap-sassto customize the theme. I am using the following versions ...
node: 6.9.5
os: win32 x64
@angular/common: 2.4.8
@angular/cli: 1.0.0-rc.0
@angular/compiler-cli: 2.4.8
bootstrap-sass: 3.3.7
In mine .angular-cli.jsonwith me
"scripts": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/bootstrap-sass/assets/javascripts/bootstrap.min.js"
]
In my file htmlI have
<span class="glyphicon glyphicon-user"></span>
In my scssfile I have
$bootstrap-sass-asset-helper: true;
$icon-font-path: if($bootstrap-sass-asset-helper, "../bootstrap/", "../fonts/bootstrap/");
@import "../node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss";
When you start ng serveor ng buildno errors, and the application works correctly with no errors in the browser console. However, these icons are not displayed. Initially, I had this application working with displayed glyphics, and then I transferred the main application code to a new application angular-cli. Is something missing?