Files
estate/postcss.config.js
2026-04-06 14:45:50 +08:00

11 lines
260 B
JavaScript

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