From d47c654d7202d8335c1d86e654d81c6012b33f1c Mon Sep 17 00:00:00 2001 From: jbergner Date: Wed, 13 Aug 2025 22:07:20 +0200 Subject: [PATCH] fix static folder --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)