generated from erangel1/generic-template
21 lines
357 B
TypeScript
21 lines
357 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import daisyui from "daisyui";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [daisyui],
|
|
daisyui: {
|
|
themes: ["dark", "light"],
|
|
darkTheme: "dark",
|
|
base: true,
|
|
styled: true,
|
|
utils: true,
|
|
logs: false,
|
|
},
|
|
};
|
|
|
|
export default config;
|