Answers for "how to assign port number to an application react"

17

set port in react app

//in package.json

"start": "react-scripts start"
t0
//linux
"start": "PORT=3006 react-scripts start"
or 
"start": "export PORT=3006 react-scripts start"
//windows
"start": "set PORT=3006 && react-scripts start"
Posted by: Guest on September-25-2020
0

change port react app

//windows
"start": "set PORT=3006 && react-scripts start"
Posted by: Guest on September-02-2021

Code answers related to "how to assign port number to an application react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language