Skip to content

Commit

Permalink
chore: fix local production build (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
CielNeko authored Mar 3, 2024
1 parent d38f314 commit 03cc64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dev": "cross-env NODE_ENV=development next dev -p 2323",
"dev:turbo": "cross-env NODE_ENV=development next dev -p 2323 --turbo",
"analyze": "cross-env NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build",
"build": "cross-env NODE_ENV=production next build",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--max_old_space_size=4096 next build",
"build:ci": "cross-env NODE_ENV=production NODE_OPTIONS=--max_old_space_size=4096 NEXT_TELEMETRY_DISABLED=1 CI=true next build",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore . --fix",
"prod:pm2": "cross-env NODE_ENV=production pm2 restart ecosystem.config.js",
Expand Down Expand Up @@ -184,4 +184,4 @@
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest"
}
}
}
}

0 comments on commit 03cc64c

Please sign in to comment.