We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf5a5c commit 1adde80Copy full SHA for 1adde80
backend/src/main.rs
@@ -521,7 +521,7 @@ async fn main() {
521
522
// Serve index.html with server-side injection for root and fallback
523
.route("/", get(handlers::frontend_proxy::serve_index))
524
- .route("/*path", get(handlers::frontend_proxy::serve_index))
+ .route("/{*path}", get(handlers::frontend_proxy::serve_index))
525
526
.with_state(pool)
527
.layer(middleware::from_fn(security_headers))
0 commit comments