hf-pda/.postcssrc.js

14 lines
249 B
JavaScript
Raw Permalink Normal View History

2022-07-26 17:50:51 +08:00
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
plugins: {
'autoprefixer': {
browsers: ['Android >= 4.0', 'iOS >= 7']
},
'postcss-pxtorem': {
rootValue: 50,
propList: ['*']
}
}
}