mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
33 lines
562 B
TypeScript
33 lines
562 B
TypeScript
import viteImagemin from 'vite-plugin-imagemin';
|
|
|
|
export function ConfigImageminPlugin() {
|
|
const plugin = viteImagemin({
|
|
gifsicle: {
|
|
optimizationLevel: 7,
|
|
interlaced: false,
|
|
},
|
|
mozjpeg: {
|
|
quality: 20,
|
|
},
|
|
optipng: {
|
|
optimizationLevel: 7,
|
|
},
|
|
pngquant: {
|
|
quality: [0.8, 0.9],
|
|
speed: 4,
|
|
},
|
|
svgo: {
|
|
plugins: [
|
|
{
|
|
name: 'removeViewBox',
|
|
},
|
|
{
|
|
name: 'removeEmptyAttrs',
|
|
active: false,
|
|
},
|
|
],
|
|
},
|
|
});
|
|
return plugin;
|
|
}
|