feat: server port configurable via PORT env (#2097)

This commit is contained in:
Ephraim Duncan
2025-10-27 06:24:24 +00:00
committed by GitHub
parent 5cdd7f8623
commit 35250fa308
6 changed files with 11 additions and 3 deletions

View File

@ -5,7 +5,7 @@
"scripts": {
"dev": "next dev -p 3003",
"build": "next build",
"start": "next start",
"start": "next start -p 3003",
"lint:fix": "next lint --fix",
"clean": "rimraf .next && rimraf node_modules"
},