When working with asp.net, I noticed that minification tends to disrupt the display of bootstrap UTF symbols. For example, here is what it looks like in the original file:
.glyphicon-edit:before {
content: "\e065";
}
And here is how it appears in the minified version:
.glyphicon-edit:before{content:""}
I tried adding the pre-minified version instead, but that didn't seem to work either. I previously asked about this issue on Stack Overflow (Asp.Net bundling not using the .min files) but received no solution.
Does anyone have any ideas on how to resolve the minification problem?