完成第一版
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-11 23:12:30 +08:00
commit e35583c254
41 changed files with 19394 additions and 0 deletions

15
postcss.config.js Normal file
View File

@@ -0,0 +1,15 @@
// postcss.config.js
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
"postcss-rem-to-responsive-pixel": {
// 32 意味着 1rem = 32rpx
rootValue: 32,
// 默认所有属性都转化
propList: ["*"],
// 转化的单位,可以变成 px / rpx
transformUnit: "rpx",
},
},
};