I\'m trying to load a font in my CSS file using @font-face but the font never loads. This is my directory structure.
@font-face
Then in webpack.conf
webpack.conf
After trying a lot of stuff the next loader made the work. Instead of file-loader, I used url-loader . You need url-loader installed.
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' }