/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./templates/**/*.html", "./app/**/*.py", ], theme: { extend: {}, }, plugins: [require("daisyui")], daisyui: { themes: ["light"], }, }