mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 18:40:19 +08:00
35 lines
574 B
TypeScript
35 lines
574 B
TypeScript
|
import viteImagemin from 'vite-plugin-imagemin';
|
||
|
|
||
|
export function configImageminPlugin() {
|
||
|
const plugin = viteImagemin({
|
||
|
gifsicle: {
|
||
|
optimizationLevel: 7,
|
||
|
interlaced: false,
|
||
|
},
|
||
|
optipng: {
|
||
|
optimizationLevel: 7,
|
||
|
},
|
||
|
webp: {
|
||
|
quality: 75,
|
||
|
},
|
||
|
mozjpeg: {
|
||
|
quality: 65,
|
||
|
},
|
||
|
pngquant: {
|
||
|
quality: [0.65, 0.9],
|
||
|
speed: 4,
|
||
|
},
|
||
|
svgo: {
|
||
|
plugins: [
|
||
|
{
|
||
|
removeViewBox: false,
|
||
|
},
|
||
|
{
|
||
|
removeEmptyAttrs: false,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
});
|
||
|
return plugin;
|
||
|
}
|