diff --git a/backend/src/main.rs b/backend/src/main.rs index c7b967a..fc83b9a 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -20,7 +20,7 @@ async fn main() { } async fn handler() -> Html { - let html_content = read_html_from_file("../web/templates/view/index.html") + let html_content = read_html_from_file("/web/templates/view/index.html") .await .unwrap_or_else(|_| "

Error loading HTML file

".to_string()); Html(html_content)