aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 844f3aa..6f603de 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -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?;