將webpack.config.js中的圖片規則修改成
{
test:/\.(png|jpg|gif|svg|eot|woff|woff2|ttf)$/,
use:[
{
loader:'url-loader',
options:{
limit:1024, //這里的單位是b
name:'images/[name][hash].[ext]' //打包后輸出路徑
}
}
]
}