feat: init

This commit is contained in:
2025-09-05 15:18:10 +08:00
parent ddbee614e8
commit 85244a451e
126 changed files with 3020 additions and 10278 deletions

View File

@@ -0,0 +1,14 @@
export default {
plugins: {
"postcss-pxtorem": {
rootValue: 16, // 75表示750设计稿37.5表示375设计稿建议设置成37.5因为可以兼容大部分移动端ui库
unitPrecision: 5,
propList: ["*"],
selectorBlackList: [],
replace: true,
mediaQuery: false,
minPixelValue: 0,
selectorBlackList: ["norem"], // 过滤掉norem-开头的class不进行rem转换
},
},
};