From 1dae3f7c3372f02346b07cfd52df8dc07c2d3861 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Wed, 27 May 2026 16:25:18 +0200 Subject: [PATCH] fix: update frontend build process to use npm install instead of npm ci --- install/bunkerm-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/bunkerm-install.sh b/install/bunkerm-install.sh index c9412e55..d9e7626b 100644 --- a/install/bunkerm-install.sh +++ b/install/bunkerm-install.sh @@ -78,10 +78,10 @@ $STD /opt/venv/bin/pip install --no-cache-dir \ msg_ok "Set up Python Environment" msg_info "Building Frontend" -rm -f /opt/bunkerm/package-lock.json cd /opt/bunkerm/frontend +rm -f package-lock.json export NODE_OPTIONS="--max-old-space-size=4096" -NODE_ENV=development $STD npm ci +$STD npm install AUTH_SECRET="build-time-placeholder" NEXT_TELEMETRY_DISABLED=1 $STD npm run build unset NODE_OPTIONS mkdir -p /nextjs