Fixed serveStatic

This commit is contained in:
2025-05-23 14:41:11 +02:00
parent 55b1073a7e
commit 99ab5d388c

View File

@@ -12,5 +12,5 @@ var staticFS embed.FS
func InitHttpHandlers() {
fs := http.FileServerFS(staticFS)
http.Handle("/static/", http.StripPrefix("/static", fs))
http.Handle("/static/", fs)
}