123456789101112131415161718192021222324252627282930313233343536 |
- // Image resource files used to compress the output of the production environment
- 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;
- }
|