1. firebase-tools 설치
npm install -g firebase-tools
2. 로그인
firebase login
3. firebase 초기 설정
firebase init
- Hosting: Configure files for Firebase Hosting and (optionally) set up Github Action deploys 선택
- Use an existing project (현재 프로젝트를 사용)
- build (public directory로)
- Configure as a single-page app? ->y
4. build
yarn build
또는
npm run build
5. deploy
firebase deploy
끝!
배포 후 수정 시
yarn build
firebase deploy
참고 자료 : https://create-react-app.dev/docs/deployment/#firebase
'IT' 카테고리의 다른 글
[TIL] Atomic Design Pattern (0) | 2022.03.02 |
---|---|
[TIL] NPM이란? (+ 플래그) (0) | 2022.02.24 |
[TIL] 웹팩(webpack)이란? (0) | 2022.02.23 |
Redux (0) | 2021.12.02 |
useCallback (0) | 2021.11.22 |