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 커맨드를 이런식으로 바꿔주면 된다. 단, 이 경우 로컬이 제대로 작동되지 않기 때문에 로컬 빌드를 따로 명령어를 만들어주면 된다.
'Research > React' 카테고리의 다른 글
React fundamentals (0) | 2023.10.04 |
---|---|
React_Vite로 React 프로젝트 생성하기 (0) | 2023.04.25 |
React_logo import하기 (0) | 2023.04.24 |
React_local images(src folder) (0) | 2023.04.24 |
React_ES6 모듈로 파일 분리하여 코드 클린하게 하기 (0) | 2023.04.24 |
댓글