Unicode Font Family Name Unescaping
Webpack css-loader escape unicode string on "font-family" as described below issue.
webpack-contrib/css-loader#317
And my genius PM is complaining it and want to show as it is.
If you have the same situation. Use this loader...
Just place font-family-unescape-loader right before css-loader
style.css
.korean {
font-family: '한글 SS 한글';
}
require('css-loader!./style.css');
output
.korean {
font-family: '\D55C\AE00 SS \D55C\AE00';
}
require('font-family-unescape-loader!css-loader!./style.css');