From 6c17d23706d73bd09f5e8434e1b5457da07bbda1 Mon Sep 17 00:00:00 2001 From: Aditya Kumar Date: Fri, 24 Apr 2026 19:59:52 +0530 Subject: [PATCH] feat: fix routing in Nginx configuration to improve SPA handling --- frontend/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 17bf490..2f18aa5 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -16,7 +16,7 @@ server { location / { root /usr/share/nginx/html; index index.html index.htm; - try_files $uri $uri/ /index.html; + try_files $uri /index.html; } error_page 500 502 503 504 /50x.html;