This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/tailwind.config.cjs
2025-03-07 14:59:06 +01:00

13 lines
335 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
},
daisyui: {
// Add your daisy ui themes here
themes: ["night"],
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
};