webpack

{
test: /.(png|svg|jpg|gif|jpeg)$/,
use: [{
loader: 'file-loader',
options: {
name: 'imgs/[name].[hash:8].[ext]'
},
}],
exclude: /fonts/,
},
{
test: /fonts/w+.(woff|woff2|eot|ttf|otf|svg)$/,
use: [{
loader: 'file-loader',
options: {
name: 'fonts/[name].[hash:8].[ext]',
publicPath: '../'
},
}],
},

原文地址:https://www.cnblogs.com/Running00/p/13816758.html