Files
Kurt_kalendar/ht_booking/tailwind.config.js
2026-05-16 22:42:22 +02:00

18 lines
563 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
// Scanned for class names so only the utilities actually used in the
// templates end up in the built CSS.
content: ["./assets/views/**/*.html"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
// Only the two themes the UI exposes — the navbar theme switch toggles
// `data-theme` between these. Shipping all daisyUI themes would bloat the
// bundle. `light` is listed first, so it is the default.
daisyui: {
themes: ["light", "dark"],
logs: false,
},
};