diff --git a/main.go b/main.go index a4b46d2..865d7e2 100644 --- a/main.go +++ b/main.go @@ -78,7 +78,7 @@ func main() { mux := http.NewServeMux() mux.HandleFunc("/", handleIndex) mux.HandleFunc("/api/status", handleAPIStatus) - mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("/data/static")))) + mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("/static")))) log.Printf("VocalForge status dashboard listening on %s (DB=%s)", HTTP_PORT, dbDsn)