1.第一步加注释
-webkit-box-orient 丢失问题
/* autoprefixer: off */ -webkit-box-orient vertical -moz-box-orient vertical /* autoprefixer: on */
2. 第二步打开webpack.prod.conf.js文件:
加上autoprefixer: {remove: false}

new OptimizeCSSPlugin({
      cssProcessorOptions: {
        safe: true,
        autoprefixer: {remove: false}
      }
}),

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-26
  • 2018-09-28
  • 2021-08-07
  • 2021-11-27
  • 2022-12-23
  • 2021-09-19
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案