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?;