From d71df2b0d70de804f430d9bd6fc7c2d21a01ef33 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 16:28:10 -0800 Subject: [PATCH] Explicitly set port for production At least on our machine, 3000 conflicts with the API --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac4d8332..e53ad34a 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "dev": "next dev -p 1234", "build": "next build", - "start": "next start", + "start": "next start -p 2345", "lint": "next lint" }, "dependencies": {