最近在打包Vue项目之后,发现css中有部分代码消失了,查阅网上类似的问题,依次试了试,终于解决了。
首先尝试注释掉 webpack.prod.conf.js
中下面的代码,发现有一部分代码生效了,但是还是有css代码打包后丢失。
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
后来在丢失的css加了注释,再次打包,样式正常。
/*! autoprefixer: off */
-webkit-box-orient: vertical
/* autoprefixer: on */