Vendor Tailwind via the standalone CLI; drop the Play CDN

Tailwind is now compiled from static/css/input.css into a committed static/css/tailwind.css by the standalone CLI, fetched on demand into bin/ (gitignored) so no Node toolchain is required. layout.templ loads the local stylesheet instead of cdn.tailwindcss.com. Adds a Makefile with generate/css/build/run/test/clean targets.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
prosolis
2026-05-14 12:10:57 -07:00
parent fd1682e11b
commit 08ff1695e0
7 changed files with 69 additions and 2 deletions

6
static/css/input.css Normal file
View File

@@ -0,0 +1,6 @@
/* Tailwind entry point. Compiled by the standalone CLI into tailwind.css:
see the Makefile `css` target. The hand-written Veola component layer
lives in app.css and is loaded separately, so editing it needs no rebuild. */
@tailwind base;
@tailwind components;
@tailwind utilities;

2
static/css/tailwind.css Normal file

File diff suppressed because one or more lines are too long