CSS bundle minification replacing Unicode characters

蓝咒 提交于 2019-12-13 14:26:52

问题


I'm seeing an issue in VS2012 that replaces the Unicode characters in my minified CSS code.

font-family: "FontAwesome";
content: "\f002";

This is fine in the un-minified bundle css file that is created, however, the \f002 is being replaced in the minified bundle css file.

font-family:"FontAwesome";content:"";

Is there some kind of escape I can use to stop this from happening?

来源:https://stackoverflow.com/questions/15574920/css-bundle-minification-replacing-unicode-characters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!