songsiqi / px2rem-postcss

Postcss version of px2rem.
270 stars 49 forks source link

配置postcss插件写成对象形式无法传入参数 #15

Open fantasy525 opened 6 years ago

fantasy525 commented 6 years ago

我写成这个形式配置postcss插件就没办法传入px2rem的参数,

var px2rem = require('postcss-px2rem');

module.exports = {
      "plugins": {
        // to edit target browsers: use "browserslist" field in package.json
        "autoprefixer": {},
        "postcss-px2rem": px2rem({remUnit: 100})
   } 
}

postcss-px2rem版本:0.3.0

fantasy525 commented 6 years ago

之前的写法有问题,写成这样子就没问题了

module.exports = {
"plugins": {
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {},
"postcss-px2rem": {
     remUnit: 100
   }
 }
}