web/tailwind.config.mjs

12 lines
261 B
JavaScript
Raw Permalink Normal View History

2025-01-22 10:36:58 -06:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
2025-01-22 22:38:19 -06:00
themes: ["coffee", "dark", "sunset"],
2025-01-22 10:36:58 -06:00
},
};