| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * 资源压缩配置
- */
- export const config_compression = {
- verbose: true, // 是否在控制台中输出压缩结果
- disable: false,
- threshold: 10240, // 如果体积大于阈值,将被压缩,单位为b,体积过小时请不要压缩,以免适得其反
- algorithm: 'gzip', // 压缩算法,可选['gzip',' brotliccompress ','deflate ','deflateRaw']
- ext: '.gz',
- deleteOriginFile: false // 源文件压缩后是否删除
- };
- /**
- * 图片压缩配置
- */
- export const config_imagemin = {
- gifsicle: {
- optimizationLevel: 7,
- interlaced: false
- },
- optipng: {
- optimizationLevel: 7
- },
- mozjpeg: {
- quality: 30
- },
- pngquant: {
- quality: [0.8, 0.9],
- speed: 4
- },
- svgo: {
- plugins: [
- {
- name: 'removeViewBox'
- },
- {
- name: 'removeEmptyAttrs',
- active: false
- }
- ]
- }
- };
|