2025-01-19 20:31:01 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./src/**/*.{html,ts}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2025-01-19 21:59:45 +01:00
|
|
|
daisyui: {
|
|
|
|
styled: true,
|
|
|
|
themes: true,
|
|
|
|
base: true,
|
|
|
|
utils: true,
|
|
|
|
logs: true,
|
|
|
|
rtl: false
|
|
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
2025-01-19 20:31:01 +01:00
|
|
|
}
|
|
|
|
|