first commit

This commit is contained in:
nicomacbookpro
2025-08-20 15:03:58 +08:00
commit fb2b8515ee
502 changed files with 195547 additions and 0 deletions

20
postcss.config.js Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
plugins: {
"postcss-pxtorem": {
rootValue: 192, // 设计稿1920px → 192设计稿375px → 37.5
propList: ["*"],
// selectorBlackList: [/.norem/], // 过滤不需要转换的class
selectorBlackList: [], // 黑名单,忽略某些类
replace: true,
// include: /node_modules\/element-ui/,
// rootValue: 16, // 可以根据需要修改
// unitPrecision: 5, // 转换精度
// propList: ["*"], // 所有属性都转换
// selectorBlackList: [], // 黑名单,忽略某些类
// replace: true,
// mediaQuery: false,
// minPixelValue: 0,
},
},
};