项目初始化

This commit is contained in:
leilei
2025-09-19 17:24:46 +08:00
commit 293951a610
107 changed files with 10222 additions and 0 deletions

15
postcss.config.js Normal file
View File

@@ -0,0 +1,15 @@
// postcss.config.js
module.exports = {
plugins: [
{
postcssPlugin: "internal:charset-removal",
AtRule: {
charset: (atRule) => {
if (atRule.name === "charset") atRule.remove();
}
}
},
require('tailwindcss'),
require('autoprefixer')
]
}