postcss.config.js 521 B

123456789101112131415
  1. const pxtorem = require("postcss-pxtorem");
  2. // module.exports = {
  3. // plugins: [
  4. // pxtorem({
  5. // rootValue: 192,//我这里配置的是我1366分辨率下的基准值,会在下面解释
  6. // unitPrecision: 5,
  7. // propList: ["*"],
  8. // selectorBlackList: [/^\.nop2r/, /^\.am/,'html'],
  9. // //排除antd样式,由于我给html设置了min-width,所以把html也排除在外不做rem转换
  10. // replace: true,
  11. // mediaQuery: false,
  12. // minPixelValue: 0
  13. // })
  14. // ]
  15. // }