Github Pages 무료배포하는 방법(Deploying to Github Pages)

김효진·2021년 7월 27일
0
  1. gh-pages를 설치한다.
    npm i gh-pages

  2. package.json에 필요한 명령어를 추가한다.

"scripts": {
    "deploy": "gh-pages -d build",
    "predeploy": "npm run build"
  },
"homepage": "htps://{github user name}.github.io/{your project name}"
  1. npm run deploy

  2. htps://{github user name}.github.io/{your project name} 에 접속한다.

  3. 배포 완료!

profile
맨땅에 헤딩 🐣

0개의 댓글