postcss 将px转换成rem vuecli3+vant+vue+postcss

匿名 (未验证) 提交于 2019-12-02 20:21:24

默认是这样 module.exports = {   "plugins": {     "autoprefixer": {},   } } 
修改成这样 module.exports = {   "plugins": {     "autoprefixer": {       browsers: ['Android >= 4.0', 'iOS >= 7']     },     "postcss-pxtorem": {        "rootValue": 37.5, 根据UI提供的375尺寸来,如果设置rootValue等于75,那么按照UI提供的750尺寸来       "propList": ["*"]     }   } } 

3.重启项目即可

如果在项目中使用了Vant UI,这样设置会导致Vant里的样式很多都改变,那我们即想用Vant又想用postcss怎么办呢?

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!