packge.json
"scripts": {
"start": "export PORT=3001 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
위와 같이 package.json에서 scripts의 start 부분에 PORT번호를 추가해준다.
packge.json
"scripts": {
"start": "export PORT=3001 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
위와 같이 package.json에서 scripts의 start 부분에 PORT번호를 추가해준다.