This commit is contained in:
2026-01-12 14:00:01 +08:00
commit 896d5f6396
237 changed files with 33121 additions and 0 deletions

11
tailwind.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html", // 如果是 Vite 项目
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};