compiling node modules

This commit is contained in:
Priec
2026-05-16 22:42:22 +02:00
parent 2eb8cbac5c
commit fcaf2038ad
9 changed files with 1159 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
/** @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,
},
};