postcss.config.js 383 B

123456789101112
  1. module.exports = {
  2. plugins: {
  3. "postcss-pxtorem": {
  4. rootValue: 37.5,
  5. propList: ["*"],
  6. exclude: ["node_modules"],
  7. unitPrecision: 5, //保留rem小数点多少位
  8. mediaQuery: false, //媒体查询( @media screen 之类的)中不生效
  9. minPixelValue: 12, //px小于12的不会被转换
  10. }
  11. }
  12. }