반응형

현재 프로젝트의 package.json에서 아래와 같이 수정한다.

 

윈도우 환경

{
  ...
    "scripts": {
        "start": "set PORT=9999 && react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test",
        "eject": "react-scripts eject"
    },
  ...
}

 


리눅스 환경에서 표현
{
  ...
    "scripts": {
        "start": "export PORT=9999 && react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test",
        "eject": "react-scripts eject"
    },
  ...
}

반응형