解决vue项目z-index无论设置多少,运行时都变成1的问题
作者:互联网
只需要在postcss.config.js文件中将cssnano{preset: “advanced”, autoprefixer: false,“postcss-zindex”: false}改成"cssnano": { “cssnano-preset-advanced”: { zindex: false,autoprefixer:false}}
// 更改前
"cssnano": {
preset: "advanced",
autoprefixer: false,
"postcss-zindex": false
}
//更改后
"cssnano": {
"cssnano-preset-advanced": {
zindex: false,
autoprefixer:false
}
}
标签:index,vue,false,zindex,preset,设置,cssnano,autoprefixer,advanced 来源: https://blog.csdn.net/weixin_44877713/article/details/112658962