From 33343bc1efe1663208783722a6455c1ffbb3822d Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Sat, 31 Jan 2026 19:57:54 -0800 Subject: [PATCH] remove node_modules --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b56f417e8b..d99c485af9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3754,8 +3754,11 @@ jobs: cd ui/litellm-dashboard - # Install dependencies using npm ci (faster and more reliable for CI) - npm ci + # Remove node_modules and package-lock to ensure clean install (fixes dependency resolution issues) + rm -rf node_modules package-lock.json + + # Install dependencies first + npm install # Now source the build script source ./build_ui.sh