chore: simplify Next.js start script to use default port

This commit is contained in:
Mauricio Siu
2025-03-02 20:32:38 -06:00
parent 3dd7ff1ee8
commit 7d30c63c39

View File

@@ -6,7 +6,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3001",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},