728x90
요즘 개발자의 삶은 배워야 할 것들이 너무 많네요.
이번에 React를 배우면서 한번씩 필요한 것들을 여기에 남깁니다.
PORT 변경
// package.json
// 리눅스 경우
...
"scripts": {
"start": "export PORT=3001 && react-scripts start",
...
},
// 윈도우 경우
...
"scripts": {
"start": "set PORT=3001react-scripts start",
...
},
728x90