Minification in asp.net seems to break the bootstrap UTF symbols. I have this in the original file:
.glyphicon-edit:before {
content: "\e065";
}
and this in the minified version:
.glyphicon-edit:before{content:""}
In theory I can add the pre-minified version instead, but that does not work for some reason either. I have asked this question earlier (Asp.Net bundling not using the .min files) but with no luck.
Any ideas how to fix the minification?