React github에 호스팅하기

ChanceMKR·2022년 5월 9일
0

React

목록 보기
4/7

1. 프로젝트 github에 push 하기

repository에 프로젝트 push

git init
git add .
git commit -m 'commit massage'
git remote add origin https://github.com/{gitID}/{react-project-name}.git
git push -u origin master

2. page 배포하기


3.gh-pages 수정

✔️readme 페이지가 뜰 경우!
gh-pages 패키지 설치

npm install gh-pages --save-dev

package.json 파일 수정
homepage 추가
scripts에 predeploy, deploy 추가

{
  "homepage": "https://chancemkr.github.io/funding_live/",
  "name": "funding_live",
  ...
  },
  "scripts": {
    ...
    "predeploy": "npm run build",
    "deploy": "gh-pages -d build"
  },
npm run deploy

commit push 반복 후

0개의 댓글