我正在使用 gulp 编译我的工作,最近我正在使用 gulp-imagemin 插件来优化图像,它的工作但仍未完全优化。在 Google PageSpeed Insights 上显示图像未完全优化。如何完全优化我的图像?请帮忙。这是我在 gulpfile.js 上使用的功能,它减少了大约 2-5% 的图像大小。但没有完全优化。
gulp.task('imgs', function () {
gulp
.src(paths.assets.images)
.pipe(imagemin({
progressive: true,
interlaced: true,
pngquant: true
}))
.pipe(flatten())
.pipe(gulp.dest(paths.build + "/img"));
});