fix: remove --omit=optional from frontend npm install (rollup native deps)

This commit is contained in:
Timothy Hofland
2026-03-15 17:56:53 +01:00
parent 98c3a12bbe
commit 7617034320

View File

@ -65,7 +65,7 @@ echo ""
echo "=== Building frontend ==="
cd "$REPO_DIR/frontend"
rm -rf node_modules package-lock.json
npm install --omit=optional --package-lock=false
npm install --package-lock=false
NODE_OPTIONS="--max-old-space-size=512" npm run build
echo "Frontend built → $REPO_DIR/frontend/dist/"