vue 图片压缩 基于cli3 配置

chainWebpack: config => {
        const imagesRule = config.module.rule('images')
        imagesRule
            .use('image-webpack-loader')
            .loader('image-webpack-loader')
            .options({
                bypassOnDebug: true
            })
            .end()
    },

在 配置文件中添加

猜你喜欢

转载自www.cnblogs.com/sanye00liubingjian/p/10718859.html