Github Pages 배포
1. package.json 파일 수정
"scripts": {
...
"deploy": "gh-pages -d build",
"predeploy": "npm run build"
},
...
...
...
"homepage": "https://{GithubUserId}.github.io/{RepositoryName}
// Ex) "homepage": "https://Jeffrey-Oh.github.io/react_movie_app_2019"
3가지를 스크립트 안에 추가한다.
2. gh-pages 설치
npm i gh-pages 로 패키지를 설치한다
3. 배포
터미널에서 `npm run build` 를 입력하고 아까입력한 `homepage` 링크로 가서 확인한다
'Frontend > React' 카테고리의 다른 글
[리액트 및 리듀서 기본 설정] React & Reducer Default Settings (0) | 2020.02.23 |
---|---|
React - Current Time (0) | 2020.02.04 |
Component Life Cycle (0) | 2019.12.31 |