개발일지

react 프로젝트 주기 - github 배포

문정동전두엽 2021. 3. 26. 17:48

(npm i gh-pages 로 gh-pages 설치가 되어있어야함)

 

packages.json에

{

"homepage""https://{id}.github.io/{project_name}"

"scripts": {

    "start""react-scripts start",

    "build""react-scripts build",

    "eject""react-scripts eject"

    "predeploy""npm run build",

 

    "deploy" : "gh-pages -d build"

  },

추가 후 

 

npm run deploy

 

끝!