3
解决办法:打包OptimizeCSSPlugin配置添加autoprefixer:{remove: false}
//文件: build/webpack.prod.conf.js
new OptimizeCSSPlugin({
    cssProcessorOptions: config.build.productionSourceMap ?
        { safe: true, map: { inline: false } } :
        { safe: true, autoprefixer:{remove: false} }// 是否自动删除过期前缀
}),

web525
157 声望4 粉丝