diff --git a/back/src/main.rs b/back/src/main.rs index 141544d..23d9fc0 100644 --- a/back/src/main.rs +++ b/back/src/main.rs @@ -122,6 +122,8 @@ async fn main() -> Result<(), std::io::Error> { .service(api) .service(get_article) .service(Files::new("/", "public").index_file("index.html")) + .service(Files::new("/game", "public").index_file("index.html")) + .service(Files::new("/chaos", "public").index_file("index.html")) }) .bind(("0.0.0.0", 2486))? .run()