我正在尝试让我的 webpack 将我的文件从 转译到一个public/images
目录中,app/assets/images
但由于某种原因它无法正常工作。我为我的字体文件使用了相同的脚本,一切正常:
在职的
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
exclude: /node_modules/,
loader: "file-loader?limit=1024&name=fonts/[name].[ext]"
}
但是由于某种原因,在测试中将文件更改为图像文件的那一刻,什么也没有发生。
不工作
{
test: /\.(jpg|jpeg|gif|png|svg)$/,
exclude: /node_modules/,
loader: "file-loader?limit=1024&name=images/[name].[ext]"
}
我错过了图像的东西吗?