Skip to content

Commit 36af73c

Browse files
committed
Avoid embedding CI path
1 parent 9156139 commit 36af73c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fn rocket() -> _ {
111111
.attach(DbConn::fairing())
112112
.attach(Template::fairing())
113113
.attach(AdHoc::on_ignite("Run Migrations", run_migrations))
114-
.mount("/", FileServer::new(relative!("static"), Options::Index))
114+
.mount("/", FileServer::new("static", Options::Index))
115115
.mount("/", routes![index])
116116
.mount("/todo", routes![new, toggle, delete])
117117
}

0 commit comments

Comments
 (0)