当前位置:主页 > 网页前端 > vue >

解决Vue打包上线之后部分CSS不生效的问题

时间:2021-06-18 08:46:44 | 栏目:vue | 点击:

首先注释掉webpack.prod.conf.js中下面的代码

new OptimizeCSSPlugin({
 cssProcessorOptions: config.build.productionSourceMap
 ? { safe: true, map: { inline: false } }
 : { safe: true }
}),

然后在utils.js中添加, minimize:true

const cssLoader = {
 loader: 'css-loader',
 options: {
  sourceMap: options.sourceMap,
  minimize:true
 }
 }

然后重新打包传到线上,解决!

您可能感兴趣的文章:

相关文章