This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/tailwind.config.js
Tim Wundenberg 6216bd56b6
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 5s
#109 add home page again
2024-08-23 19:16:30 +02:00

15 lines
207 B
JavaScript

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