From 3312bdef79c1f2e7d09dc851ffbd47f826ca7d18 Mon Sep 17 00:00:00 2001 From: siddheshraze <81591724+siddheshraze@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:57:56 -0500 Subject: [PATCH] correcting next start command to use node standalone server JS file -- maybe this'll help? --- frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index 9a1f82d8..eba329a8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,7 @@ "scripts": { "dev": "next dev", "build": "next build", - "start": "next start", + "start": "node .next/standalone/server.js", "lint": "next lint", "bs": "next build; next start", "bswin": "npm run build ; npm run start",