[React] github page로 React 서비스 배포하기
[노마드코더 React movie app 강의 수강 후 정리 한 내용입니다] github에 원격 저장소에 프로젝트 코드를 올려두면 github 서버로 서비스 할 수 있다. 1. gh-pages를 설치한다.npm install gh-pagescs2. 이제 'package.json' 파일을 수정해야 한다.먼저 homepage 라는 속성을 새로 만든다. "homepage": "https://github 유저네임.github.io/프로젝트 이름"cs모든 글자는 영어 소문자로 입력해야 한다.그리고 scripts 속성도 아래와 같이 수정한다. "scripts": { "start": "react-scripts start", "build": "react-scripts build", "deploy": "gh-pages -d build", "predeploy": "npm run build" },Colored by Color Scriptercs명령어를 잠시 살펴보자.start는 react 프로젝트를 실행시킬 때 사용하는 명령어이다. build 명령어는 build...