18 lines
563 B
JavaScript
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,
|
|
},
|
|
};
|