Load fonts with Webpack and font-face

后端 未结 4 2142
萌比男神i
萌比男神i 2020-12-14 00:38

I\'m trying to load a font in my CSS file using @font-face but the font never loads. This is my directory structure.

Then in webpack.conf

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-14 00:57

    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' }
    

提交回复
热议问题