From e087c120e70dfcf4ce093f8b00fcf4d51b0f5934 Mon Sep 17 00:00:00 2001 From: Mercurio <47455213+NotLugozzi@users.noreply.github.com> Date: Sat, 31 May 2025 18:18:46 +0200 Subject: [PATCH] enable webapp routes --- api/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main.rs b/api/src/main.rs index d7a6936..9cb65cd 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -59,8 +59,8 @@ async fn main() -> Result<(), rocket::Error> { update_role, update_quota, ]) - //.mount("/", FileServer::from("/app/static").rank(10)) - //.register("/", catchers![not_found]) + .mount("/", FileServer::from("/app/static").rank(10)) + .register("/", catchers![not_found]) .launch() .await?;