Prevent writing package-lock.json in startup scripts

This commit is contained in:
Cohee
2025-12-02 10:26:35 +00:00
parent 765c76ea80
commit 560d15c5bb
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ if %errorlevel% neq 0 (
echo Installing npm packages and starting server
set NODE_ENV=production
call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev
call npm install --no-save --no-audit --no-fund --loglevel=error --no-progress --omit=dev
node server.js %*
:end