- postcss-pxtorem 是一款 postcss 插件,用于将单位转化为 rem
- lib-flexible 用于设置 rem 基准值
1.创建 postcss.config.js文件
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
plugins: {
autoprefixer: {
overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8']
},
'postcss-pxtorem': {
rootValue: 37.5,
propList:['*'],
selectorBlackList :['html'],
minPixelValue :1.5,
mediaQuery:false,
exclude:'common',
}
}
}
- 最后需要重启一下即可