diff --git a/internal/httpapi/server.go b/internal/httpapi/server.go index 2cfa5a4..c31419a 100644 --- a/internal/httpapi/server.go +++ b/internal/httpapi/server.go @@ -64,7 +64,7 @@ func (s *Server) Start(ctx context.Context) error { mux.HandleFunc("/", s.handleUIDash) mux.HandleFunc("/summarizer", s.handleUISummarizer) // Serve embedded static files under /static/ - if sub, err := fs.Sub(staticFS, "."); err == nil { + if sub, err := fs.Sub(staticFS, "static"); err == nil { mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.FS(sub)))) } mux.HandleFunc("/login", s.handleLogin)