chore: pin dev server to port 4000
Deploy to route.crispygoat.com / deploy (push) Successful in 3m12s

- 'next dev' now always uses port 4000 (via -p flag, not env var)
- No more need to set PORT=4000 before running 'npm run dev'
This commit is contained in:
2026-06-07 07:11:44 +00:00
parent 16685422b9
commit 856b5caa40
+1 -1
View File
@@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node fix-agents.js && next dev --webpack -H 0.0.0.0",
"dev": "node fix-agents.js && next dev --webpack -H 0.0.0.0 -p 4000",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",