diff --git a/src/main.rs b/src/main.rs index 442620a..3cfdbc8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,6 +8,6 @@ mod routes; #[launch] fn rocket() -> _ { rocket::build() - .mount("/", FileServer::from(relative!("static"))) + .mount("/", FileServer::from("static")) .attach(routes::stage()) }