Vant postcss-pxtorem配置
作者:互联网
1.npm i -S amfe-flexible
import 'amfe-flexible'2.
npm i postcss-pxtorem@5.1.1 --save-dev
在根目录下创建 .postcssrc.js
module.exports = { plugins: { 'postcss-pxtorem': { rootValue({ file }) { return file.indexOf('vant') !== -1 ? 37.5 : 75 }, propList: ['*'], }, }, };
标签:npm,Vant,file,flexible,postcss,pxtorem,amfe 来源: https://www.cnblogs.com/jayy520/p/15789626.html