VUE-CLI webpack配置autoprefixer後build模式與dev不相同,打包後部分前綴或屬性丟失,所見即所得

解決辦法:打包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} }// 是否自動刪除過時前綴
}),
相關文章
相關標籤/搜索