From 1d265bce0d7cd7c25ba8d0dfdfff89fb115a5c5d Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Sat, 7 Feb 2026 10:26:48 -0300 Subject: [PATCH] chore: add Next.js static export output to .gitignore Add litellm/proxy/_experimental/out/ to .gitignore to exclude Next.js static export build artifacts from version control. This directory contains generated HTML, JS, and CSS files that are regenerated on each build and should not be committed. Co-Authored-By: Claude Opus 4.5 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ddf5f6279b3..791c55df4a9 100644 --- a/.gitignore +++ b/.gitignore @@ -42,6 +42,7 @@ litellm/proxy/tests/package.json litellm/proxy/tests/package-lock.json ui/litellm-dashboard/.next 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