lincenying / vue2-multiple-entry

vue2, vue2+vue-router, vue2+vue-router+vuex 混合多页配置实例
https://lincenying.github.io/vue2-multiple-entry/index
150 stars 55 forks source link

生产环境打包后 z-index被重新计算 按照网上的方法无法解决 #16

Closed byoungd closed 6 years ago

byoungd commented 6 years ago

1.安装cssnano到DevDependencies

  1. 修改 build/webpack.prod.conf.js :

` new OptimizeCSSAssetsPlugin({ cssProcessor: require('cssnano'), cssProcessorOptions: { discardComments: {removeAll: true}, // 避免 cssnano 重新计算 z-index safe: true }, canPrint: false })

`

npm run build之后,z-index还是被重新计算了导致样式不正常,请问如何解决这个问题,非常感谢!

byoungd commented 6 years ago

这个方案实际上是可以解决的,线上因为CDN的原因没有刷新。