vue.config.js 使用image-webpack-loader配置webpack图片压缩

林劲
2023-12-01

1、使用命令安装image-webpack-loader

cnpm install --save-dev image-webpack-loader

2、打开vue.config.js

chainWebpack (config) {
		    // 压缩图片
		    config.module.rule('images').use('image-webpack-loader').loader('image-webpack-loader').options({
		      bypassOnDebug: true
		    }).end()
      }
 类似资料: