diff --git a/internal/server/routes.go b/internal/server/routes.go index 23cce71..0ac0a30 100644 --- a/internal/server/routes.go +++ b/internal/server/routes.go @@ -30,8 +30,8 @@ func (s *Server) SetupRoutes() { s.router.Get("/health", s.handlers.HandleHealthCheck()) // Static files - s.router.Handle("/static/*", http.StripPrefix( - "/static/", + s.router.Handle("/s/*", http.StripPrefix( + "/s/", http.FileServer(http.FS(static.Static)), ))