I am using css-loader and i could see that the content is not being processed correctly.
Original CSS :-
.icon-caret-left:before {
content: “\F10C"
}
The above CSS was processed by webpack to :-
.icon-caret-left:before {
content: '"\\f10c"'
}
Webpack: 2.2.1
CSS-Loader: 0.27.3
Node: 7.2.1