From ec1f97828fbedf4aa6a525182352086f758da84f Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 24 Jan 2026 23:52:35 -0500 Subject: [PATCH] feat: replace Tailwind CDN with local build system - Add tailwind.config.js with theme color configuration - Add package.json with build scripts and dependencies - Add Dockerfile Node.js setup for CSS building - Add input.css for Tailwind processing - Update all templates to use local CSS and JS instead of CDN - Add static file serving in main.go - Download htmx during build process - Enable CSS minification for production builds --- cmd/server/static/input.css | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cmd/server/static/input.css diff --git a/cmd/server/static/input.css b/cmd/server/static/input.css new file mode 100644 index 0000000..75575df --- /dev/null +++ b/cmd/server/static/input.css @@ -0,0 +1,5 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +/* Custom theme variables are handled in CSS custom properties in templates */ \ No newline at end of file