首页 前端知识 给出vue2的最优打包配置vue.config.js,压缩大于1MB的图片

给出vue2的最优打包配置vue.config.js,压缩大于1MB的图片

2024-04-19 08:04:08 前端知识 前端哥 79 62 我要收藏
```javascript const TerserPlugin = require('terser-webpack-plugin'); module.exports = { chainWebpack: config => { // 压缩大于1MB的图片 config.module .rule('images') .test(/\.(png|jpe?g|gif|svg)(\?.?$/) .use('image-webpack-loader') .loader('image-webpack-loader') .tap(() => ({ mozjpeg: { progressive: true, quality 65 }, optipng: { enabled: false, }, pngquant: { quality: [0., 0.90], speed: 4 }, gifsicle: { interlaced: false, }, webp: { quality: 75 } })); }, configureWebpack: { optimization: { minimizer [ new TerserPlugin({ terserOptions: { compress: { drop_console: true, drop_debugger: true } } }) ] } } }; ```
转载请注明出处或者链接地址:https://www.qianduange.cn//article/5216.html
标签
评论
发布的文章

用js生成小米商城

2024-04-27 21:04:59

网页汇率计算器vue代码

2024-04-26 13:04:44

Python读写Json文件

2024-04-23 22:04:19

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!