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
This commit is contained in:
2026-01-29 14:08:59 -05:00
parent 201a7d89d8
commit 4dab173b16
+1 -1
View File
@@ -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)