I'm developing a project and it's time to work on its performance, and I've been using the bundling
and minification
MVC 4.5 , it worked as expected, it put together all the styles that are set up in a bundle , made a minified in> and placed in a link only, to decrease the number of requests of the application.
Problem 1:
But the problem is that I am usingBootstrap 3
and Font Awesome
, and on these faces there are relative paths for the fonts:
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.eot?v=3.2.1');
...
}
Problem 2:
The first problem is that it does not find the fonts, and the second problem is that content:before
is being generated with a strange character:
.icon-reorder:before {
content: "";
}
Note: I believe this second problem may be because of the first one.