This commit is contained in:
2025-03-24 15:01:39 +08:00
commit 74ae87d760
18 changed files with 8737 additions and 0 deletions

10
tailwind.config.js Normal file
View File

@@ -0,0 +1,10 @@
// tailwind.config.js
module.exports = {
content: [
"./src/**/*.{vue,js,ts,jsx,tsx}", // 根据你的项目结构调整路径
],
theme: {
extend: {},
},
plugins: [],
};