I have a style.css file that makes use of a font file, and I\'m having trouble getting the font file loaded using Webpack. Here is my loader configuration:
This did the trick for me:
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" }, { test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" },