diff --git a/src/main.rs b/src/main.rs index 8d65cb3..730f991 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,6 +9,6 @@ fn index() -> String { #[launch] fn rocket() -> Rocket { rocket::build() - .mount("/", routes![index]) + // .mount("/", routes![index]) .mount("/", FileServer::from(relative!("website"))) } \ No newline at end of file diff --git a/website/index.html b/website/index.html new file mode 100644 index 0000000..36780bd --- /dev/null +++ b/website/index.html @@ -0,0 +1,12 @@ + + + + + + + Document + + + Hello Fileserver + + \ No newline at end of file