feat: serve assets from root
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M internal/server/mux.go → internal/server/mux.go
@@ -366,7 +366,7 @@ ) } }) - mux.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) { + mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { asset, found := assets.ByPath[r.URL.Path] if !found { http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)