From 551e49097cf4d7c25032c0b74db28fee941a9fbe Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Thu, 11 Jun 2026 23:42:21 +0000 Subject: [PATCH] chore: gitignore generated UI build output folders Local UI builds (build_ui.sh, npm run build) drop content-hashed chunk files into litellm/proxy/_experimental/out and ui/litellm-dashboard/out, flooding git status with untracked noise that then rides along into unrelated PRs via git add. Ignore both paths; the 357 already-tracked bundle files in _experimental/out stay tracked and keep shipping in the wheel and Docker images, and intentional bundle refreshes can still add new files with git add -f --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 572830d35f6..b73fee08b8d 100644 --- a/.gitignore +++ b/.gitignore @@ -44,7 +44,9 @@ litellm/proxy/tests/node_modules litellm/proxy/tests/package.json litellm/proxy/tests/package-lock.json ui/litellm-dashboard/.next +ui/litellm-dashboard/out ui/litellm-dashboard/node_modules +litellm/proxy/_experimental/out ui/litellm-dashboard/next-env.d.ts ui/litellm-dashboard/package.json ui/litellm-dashboard/package-lock.json