vue移动端中使用lib-flexible和px2rem,导致第三方UI库的样式也变小的问题

1)找到build/utils.js注释掉px2rem-loader

vue移动端中使用lib-flexible和px2rem,导致第三方UI库的样式也变小的问题

2)安装postcss-px2rem-exclude,npm i postcss-px2rem-exclude -D

3)package.json添加下面代码

"postcss": {     "plugins": {       "autoprefixer": {},       "postcss-px2rem-exclude":{           "remUnit": 75,           "exclude":"node_modules"       }     }   } vue移动端中使用lib-flexible和px2rem,导致第三方UI库的样式也变小的问题

 

 注意exclude只写node_modules就可以了,写正则不管用

4)重启项目

上一篇:[Windows] cuda cudnn安装


下一篇:报错Could not load dynamic library ‘cudnn64_8.dll‘; dlerror: cudnn64_8.dll not found解决方法