cashier-mer/postcss.config.cjs
weipengfei 16fa02aadf 1
2024-04-20 09:54:56 +08:00

9 lines
249 B
JavaScript

module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 16, // 设计稿宽度的 1/10
propList: ['*'], // 转换所有属性的px值
// selectorBlackList: ['html'], // 排除html选择器
},
},
};