postcss.config.js 283 B

123456789
  1. module.exports={
  2. plugins: [
  3. require('postcss-pxtorem')({
  4. rootValue : 16, // 换算的基数
  5. selectorBlackList : [], // 忽略转换正则匹配项 列入一些ui库, ['.el'] 就是忽略elementUI库
  6. propList : ['*'],
  7. }),
  8. ]
  9. }