This commit is contained in:
Zy
2026-04-06 14:45:50 +08:00
commit f414026af8
373 changed files with 30667 additions and 0 deletions

10
postcss.config.js Normal file
View File

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