From 62d17575f709976794b41a1e263fb4525edfbacf Mon Sep 17 00:00:00 2001 From: Rajas Patil Date: Fri, 23 Aug 2024 16:39:19 -0400 Subject: [PATCH] Fixed issue: Application does not work on localhost:9010 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9e1a482..ade40f8 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "scripts": { "start-Mac": "PORT=9010 react-app-rewired --max_old_space_size=8192 start", "start-Linux": "export SET NODE_OPTIONS=--openssl-legacy-provider PORT=9010 && react-app-rewired --max_old_space_size=8192 start", - "start-Windows": "set PORT = 9010 && react-app-rewired --max_old_space_size=8192 start", + "start-Windows": "set PORT=9010 && react-app-rewired --max_old_space_size=8192 start", "build": "react-app-rewired --max_old_space_size=8192 build", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject"