vben-admin-thin-next/build/vite/plugin/imagemin.ts

38 lines
705 B
TypeScript
Raw Normal View History

2021-02-09 23:47:14 +08:00
// Image resource files used to compress the output of the production environment
// https://github.com/anncwb/vite-plugin-imagemin
2021-02-09 23:47:14 +08:00
2021-02-04 22:00:25 +08:00
import viteImagemin from 'vite-plugin-imagemin';
export function configImageminPlugin() {
const plugin = viteImagemin({
gifsicle: {
optimizationLevel: 7,
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
webp: {
quality: 75,
},
mozjpeg: {
2021-02-26 20:15:50 +08:00
quality: 8,
2021-02-04 22:00:25 +08:00
},
pngquant: {
2021-02-26 20:15:50 +08:00
quality: [0.8, 0.9],
2021-02-04 22:00:25 +08:00
speed: 4,
},
svgo: {
plugins: [
{
removeViewBox: false,
},
{
removeEmptyAttrs: false,
},
],
},
});
return plugin;
}