This commit is contained in:
Sakurasan
2025-04-16 18:14:53 +08:00
parent ffb4496fd8
commit 15f17f4e8d
55 changed files with 7654 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
import daisyui from 'daisyui';
export default{
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [daisyui],
daisyui: {
themes: ["light", "dark","cupcake","emerald","pastel"], // 可以根据需要添加或修改主题
},
}