1
I’m developing a project and it’s time to work on the performance of it, and I went to use the scheme of bundling
and minification
of MVC 4.5, it worked as expected, it joined all the styles that are configured in a Bundle, made a minified and put in a single link, to decrease the number of requests of the application.
Problem 1:
Only the problem is I’m using the Bootstrap 3
and the Font Awesome
, and on these guys there are relative paths to the sources:
@font-face {
font-family: 'FontAwesome';
src: url('../font/fontawesome-webfont.eot?v=3.2.1');
...
}
Problem 2:
The first problem is that he can’t find the sources, and the second problem is that the content:before
is being generated with a strange character:
.icon-reorder:before {
content: "";
}
Observing: I believe this second problem may be because of the first.
It is unfortunately the project structure is not this way, and it will not be possible to put this folder at the root.
– fbadaro