fix(ui): serve /ui/assets from the nginx image instead of SPA fallback (#34066)

This commit is contained in:
ryan-crabbe-berri 2026-07-21 09:22:02 -07:00 committed by GitHub
parent c1b6c4062e
commit e20d3d4ecc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,6 +49,9 @@ http {
expires 1y;
add_header Cache-Control "public, immutable";
}
location ^~ /ui/assets/ {
alias /usr/share/nginx/html/assets/;
}
location = /favicon.ico {
try_files $uri =404;
expires 1d;