Move static web assets to /web dir

This commit is contained in:
Anders Roos 2022-11-11 11:56:01 +01:00
parent 130429b10a
commit 41ce5a3b32
13 changed files with 1 additions and 1 deletions

View file

@ -32,5 +32,5 @@ func runHTTPServer() {
}
func getHandler() http.Handler {
return http.FileServer(http.Dir("./pkg/dashboard/static"))
return http.FileServer(http.Dir("./web/static"))
}