我正在将image-webpack-loader与文件加载器一起使用。尽管我在pngquant上使用了“ 90-100”索引,但我的png图像却被发布得非常可笑,质量很差。目前我的png_background有892个字节!而且这些指标的质量太差了。
这是我的配置:
// images
{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
mozjpeg: {
progressive: true,
quality: 65
},
// optipng.enabled: false will disable optipng
optipng: {
enabled: true,
},
pngquant: {
quality: '90-100',
},
gifsicle: {
interlaced: false,
},
// the webp option will enable WEBP
webp: {
quality: 75
}
}
},
],
}
我尝试使用它一些,但是我的图像仍然以超压缩的形式发布。我想知道为什么会这样吗? 任何提示都会很棒, 谢谢