I have created a website using Ember.js, Ember CLI and Twitter Bootstrap. I have installed Bootstrap using $ bower install --save bootstrap
.
This was working just fine untill I updated the Bootstrap version to 3.2.0. Now the glyph icons does not work in Firefox, E003
is displayed instead of the icons. How ever, the icons still work in IE and Chrome.
I have figured out that there is an issue with the customized bootstrap and that you should download the orignial package and replace all font files with the standard ones, but this did not work either.
My brocfile.js
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp();
app.import('vendor/bootstrap/dist/js/bootstrap.js');
app.import('vendor/bootstrap/dist/css/bootstrap.css');
app.import('vendor/moment/moment.js');
var mergeTrees = require('broccoli-merge-trees');
var pickFiles = require('broccoli-static-compiler');
var extraAssets = pickFiles('vendor/bootstrap/dist/fonts', {
srcDir: '/',
files: ['**/*'],
destDir: '/fonts'
});
module.exports = mergeTrees([app.toTree(), extraAssets]);