fix: add nginx SPA fallback
continuous-integration/drone/pr Build is passing

This commit is contained in:
Dennis Hundertmark
2026-03-09 12:51:03 +01:00
parent a779a16acb
commit 3cf3da9886
2 changed files with 13 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}