diff --git a/src/web/app/app.go b/src/web/app/app.go index 82c52e7..75f05c7 100644 --- a/src/web/app/app.go +++ b/src/web/app/app.go @@ -35,7 +35,7 @@ func (app *App) Routes() http.Handler { mux.Handle("GET /article/{id}", http.HandlerFunc(app.Article)) // serve files from the "static" directory - mux.Handle("GET /static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./app/static")))) + mux.Handle("GET /static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./web/static")))) return mux }