Answers for "start react app in different port"

3

reactjs app change port

"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 January-10-2021

Code answers related to "start react app in different port"

Code answers related to "Javascript"

Browse Popular Code Answers by Language