mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import DaisyUI from "daisyui";
|
|
|
|
export default {
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
darkMode: "selector",
|
|
content: ["docs/.vitepress/theme/**/*.{vue,js,ts}"],
|
|
plugins: [DaisyUI],
|
|
daisyui: {
|
|
themes: [],
|
|
base: false,
|
|
logs: false,
|
|
},
|
|
} satisfies Config;
|