imagemin.ts 667 字节
Newer Older
V
vben 已提交
1
// Image resource files used to compress the output of the production environment
2
// https://github.com/anncwb/vite-plugin-imagemin
V
vben 已提交
3

V
vben 已提交
4 5 6 7 8 9 10 11 12 13 14 15
import viteImagemin from 'vite-plugin-imagemin';

export function configImageminPlugin() {
  const plugin = viteImagemin({
    gifsicle: {
      optimizationLevel: 7,
      interlaced: false,
    },
    optipng: {
      optimizationLevel: 7,
    },
    mozjpeg: {
V
Vben 已提交
16
      quality: 8,
V
vben 已提交
17 18
    },
    pngquant: {
V
Vben 已提交
19
      quality: [0.8, 0.9],
V
vben 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
      speed: 4,
    },
    svgo: {
      plugins: [
        {
          removeViewBox: false,
        },
        {
          removeEmptyAttrs: false,
        },
      ],
    },
  });
  return plugin;
}