2025年6月9日10:23:02

This commit is contained in:
17792275749
2025-06-09 10:23:05 +08:00
commit 9df8b7e8e2
146 changed files with 23980 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
plugins: [
require('postcss-pxtorem')({
rootValue:({ file }) => {
if (file.includes('userRanking') || file.includes('dietaryNutritionTips')) {
return 108;
} else {
return 192;
}
},
propList: ['*'],
})
]
}