refactor: update frontend build process in installation scripts

This commit is contained in:
MickLesk
2026-05-27 15:50:01 +02:00
parent a9edfd0bc4
commit 3c1c05178e
2 changed files with 3 additions and 4 deletions

View File

@@ -45,8 +45,8 @@ function update_script() {
msg_info "Rebuilding Frontend"
cd /opt/bunkerm/frontend
export NODE_OPTIONS="--max-old-space-size=4096"
$STD npm install
$STD npm run build
NODE_ENV=development $STD npm ci
AUTH_SECRET="build-time-placeholder" NEXT_TELEMETRY_DISABLED=1 $STD npm run build
unset NODE_OPTIONS
mkdir -p /nextjs
cp -r /opt/bunkerm/frontend/.next/standalone/. /nextjs/

View File

@@ -79,9 +79,8 @@ msg_ok "Set up Python Environment"
msg_info "Building Frontend"
cd /opt/bunkerm/frontend
[[ -f postcss.config.js ]] && mv postcss.config.js postcss.config.cjs
export NODE_OPTIONS="--max-old-space-size=4096"
AUTH_SECRET="build-time-placeholder" NEXT_TELEMETRY_DISABLED=1 $STD npm install
NODE_ENV=development $STD npm ci
AUTH_SECRET="build-time-placeholder" NEXT_TELEMETRY_DISABLED=1 $STD npm run build
unset NODE_OPTIONS
mkdir -p /nextjs