We are using FontAwesome with Bootstrap. However, when we try to use FA with our custom minifier, it attempts to load the fonts from a relative path, which returns a 404, du
Simple override the font-family of the base CSS class:
.fa { font-family: 'FontAwesome2' !important; }
Then, paste/include and edit the font definition:
@font-face { font-family: 'FontAwesome2'; src: url('//host.domain/yourpath/fontawesome-webfont.eot?v=3.1.0'); ... font-style: normal; }