remove relative path macro

This commit is contained in:
cel 🌸 2023-06-23 14:35:57 +01:00
parent ef2726a261
commit a10fcb21fd
Signed by: cel
GPG Key ID: 48E29AF13B5F1349
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ async fn main() -> std::result::Result<(), rocket::Error> {
}))
.mount("/", routes![home, contact, blog, blogpost, feed, plants])
.register("/", catchers![catcher])
.mount("/", FileServer::from(relative!("static")))
.mount("/", FileServer::from("./static"))
.launch()
.await?;