whatisthis?
etc. gh-pages 패키지 본문
1 / gh-pages 패키지 설치
npm i gh-pages
2 / package.json 수정
,
"homepage": "https://thisisyjin.github.io/ReactJSPractice"
끝부분에 이렇게 추가하고,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build", ❗❗
"predeploy": "npm run build" ❗❗
},
scripts 부분에 deploy와 predeploy 를 추가함.
3 / 터미널에 npm run deploy 입력
> project@0.1.0 predeploy
> npm run build
> project@0.1.0 build
> react-scripts build
https://thisisyjin.github.io/디렉토리명
위 페이지로 접속하면 끝
'WEB STUDY > ETC.' 카테고리의 다른 글
공부 근황 - 드디어 자바스크립트를 깨우친 나 (0) | 2022.04.02 |
---|---|
git. GitHub (Bash) 폴더 전체 업로드 (0) | 2022.03.06 |
pj. excel sheet ex) 견적서 (0) | 2022.02.10 |
수정중 ㅡ etc. 웹브라우저의 렌더링(Rendering) 과정 - DOM (0) | 2022.01.24 |
Git/GitHub. git 저장소 생성(init)과 commit (0) | 2022.01.14 |