zhaoxiaoqiang
2022-08-30 464b17c3eb0631118548f3e54667758be5dedcb4
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    plugins: {
      'autoprefixer': {},
      //默认不开启rem配置
      'postcss-pxtorem': {
        rootValue: 50,
        mediaQuery:true, //允许在媒体查询中转换px
        propList: ['*'],//px 大写 Px 就不会被转换
      }
    }
  }