From 50f514e3cbf7615f088bfcdec42146ce58135cd3 Mon Sep 17 00:00:00 2001 From: feitianbubu Date: Sun, 28 Jun 2026 20:54:53 +0800 Subject: [PATCH] fix: isolate classic frontend install so the dashboard renders --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 76b5d61be84..1aa4bac580a 100644 --- a/makefile +++ b/makefile @@ -21,7 +21,7 @@ build-frontend: build-frontend-classic: @echo "Building classic frontend..." - @cd ./web && bun install --frozen-lockfile + @cd ./web && rm -rf node_modules classic/node_modules && bun install --filter ./classic --frozen-lockfile @cd $(FRONTEND_CLASSIC_DIR) && VITE_REACT_APP_VERSION=$(cat ../../VERSION) bun run build build-all-frontends: build-frontend build-frontend-classic