Files
estate/postcss.config.js
2026-05-21 14:13:28 +08:00

11 lines
263 B
JavaScript

export default {
plugins: {
// autoprefixer: {},
'postcss-pxtorem': {
rootValue: 16, // 基准根节点字体大小
propList: ['*'], // 所有属性都转换
selectorBlackList: ['el-', 'ry-'] // 不转换 Element、若伊
}
}
};