From c11ed8abc406a8593ef644a33b8d582e59af9930 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 10 Apr 2023 15:15:16 +0200 Subject: [PATCH] fix ci --- src/rest/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest/mod.rs b/src/rest/mod.rs index 6a81b5d..cf83077 100644 --- a/src/rest/mod.rs +++ b/src/rest/mod.rs @@ -83,7 +83,7 @@ pub fn start(db: SqlitePool) -> Rocket { .mount("/auth", auth::routes()) .mount("/cox", cox::routes()) .mount("/admin", admin::routes()) - .mount("/public", FileServer::from("./static/")) + .mount("/public", FileServer::from("static/")) .register("/", catchers![unauthorized_error]) .attach(Template::fairing()) }