postcss.config.js 308 B

1234567891011121314
  1. module.exports = {
  2. plugins: {
  3. "postcss-pxtorem": {
  4. // 此处为添加部
  5. rootValue: 16, // 对应16px 适配移动端750px宽度
  6. unitPrecision: 5,
  7. propList: ["*"],
  8. selectorBlackList: [],
  9. replace: true,
  10. mediaQuery: false,
  11. minPixelValue: 0,
  12. },
  13. },
  14. };