From 311153d96b68116a5a7dcafc40e368f88021a695 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 10 Apr 2023 15:01:43 +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 cf83077..6a81b5d 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()) }