mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
fix(ui): serve /ui/assets from the nginx image instead of SPA fallback (#34066)
This commit is contained in:
parent
c1b6c4062e
commit
e20d3d4ecc
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue