diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 0138027f0..0fc356092 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -5,5 +5,8 @@ server { index index.html; location / { try_files $uri $uri/ =404; + rewrite ^((?!.(js|css|png|svg|jpg|woff|woff2)).)*$ /index.html break; + proxy_intercept_errors on; # see frontend://nginx.org/en/docs/frontend/ngx_frontend_proxy_module.html#proxy_intercept_errors + error_page 404 =200 /index.html; } }