Closed phtrivier closed 9 years ago
Seems like the example line does not work
{ test: /\.woff$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" },
I stumbled on the same issue as : https://github.com/webpack/less-loader/issues/44
This seems to work (at least it compiles)
{ test: /\.(woff|woff2)$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" },
This helped me! Thanks!
Updated README.
Thanks.
Seems like the example line does not work
I stumbled on the same issue as : https://github.com/webpack/less-loader/issues/44
This seems to work (at least it compiles)