From 4dab173b16667e51a709fc9fe55aae07a5ba2252 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Thu, 29 Jan 2026 14:08:59 -0500 Subject: [PATCH] fix: serve static files from web directory - Update static file serving from 'static' to 'web/static' - Maintains /static/ URL path for backwards compatibility - Frontend assets now properly separated from backend code --- cmd/server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server/main.go b/cmd/server/main.go index d8bb75c..12e860b 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -151,7 +151,7 @@ func main() { // force rebuild // Static files - e.Static("/static", "static") + e.Static("/static", "web/static") // Routes h := handlers.SetupRoutes(protected, queries)