본문 바로가기
Research/React

React_netflify로 배포하기

by RIEM 2023. 4. 25.

React

1. github 리파지토리에 프로젝트 push

2. netflify에서 리파지토리 연결

3. Build command 추가. React의 경우 npm run build

 

배포 에러 시

...
  "scripts": {
    "start": "react-scripts start",
    "build": "CI= react-scripts build",
    "local-build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
...

만약 compile이 제대로 되지 않은 상태로 배포했을 경우, netflify에서 에러가 발생하여 배포가 진행되지 않을 수 있다. 이때는 build 커맨드를 이런식으로 바꿔주면 된다. 단, 이 경우 로컬이 제대로 작동되지 않기 때문에 로컬 빌드를 따로 명령어를 만들어주면 된다.

댓글