12345678910111213141516171819202122232425262728293031323334 |
- // Image resource files used to compress the output of the production environment
- // https://github.com/anncwb/vite-plugin-imagemin
- import viteImagemin from 'vite-plugin-imagemin';
- export function configImageminPlugin() {
- const plugin = viteImagemin({
- gifsicle: {
- optimizationLevel: 7,
- interlaced: false,
- },
- optipng: {
- optimizationLevel: 7,
- },
- mozjpeg: {
- quality: 8,
- },
- pngquant: {
- quality: [0.8, 0.9],
- speed: 4,
- },
- svgo: {
- plugins: [
- {
- removeViewBox: false,
- },
- {
- removeEmptyAttrs: false,
- },
- ],
- },
- });
- return plugin;
- }
|