Skip to content

Commit 1adde80

Browse files
committed
feat: implement initial backend application structure with core modules, routing, and security middleware.
1 parent acf5a5c commit 1adde80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ async fn main() {
521521

522522
// Serve index.html with server-side injection for root and fallback
523523
.route("/", get(handlers::frontend_proxy::serve_index))
524-
.route("/*path", get(handlers::frontend_proxy::serve_index))
524+
.route("/{*path}", get(handlers::frontend_proxy::serve_index))
525525

526526
.with_state(pool)
527527
.layer(middleware::from_fn(security_headers))

0 commit comments

Comments
 (0)