Front End/React
-
[React] 맥북에서 React App 깃허브(git)에 Deploy 하기 (feat. git에 개인 홈페이지만들기)Front End/React 2021. 8. 16. 18:50
1. 콘솔창에 npm install gh-pages@2.0.1 - 최신버전 gh-pages 설치시 deploy 오류가 생기는 경우가 있음 - Reference) https://stackoverflow.com/questions/57308851/receive-error-when-deploy-to-github-pages - 이미 gh-pages 를 실행(빌드)하여 cache 파일로 인한 오류가 있을 수 있음 - Reference) https://dryadsoft.tistory.com/16 2. package.json 파일에 'homepage' 객체 추가 - value 값에 https://{UserName}.github.io/{ProjectName} 추가 3. package.json 파일 scripts 객체에 ..