image-webpack-loader was previously configured in webpack.base.config.js:
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
use:[
{
loader: "url-loader",
options: {
limit: 10000,
name: utils.assetsPath("img/[name].[hash:7].[ext]")
}
},
{
loader: "image-webpack-loader",
options: {
bypassOnDebug: true,
}
}
]
}
there is no local configuration for using vue-cli3. It is configured in vue-config.js on the official website, but how should it be configured? Have you ever used it?