postcss.config.js 242 B

123456789
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue: 37.5, // 以设计稿宽度为 375px 为基准,因为在 flexible.js 中设置了 html 的 font-size 为 37.5px
  5. propList: ['*'],
  6. },
  7. },
  8. };