안녕하세요, hr0513입니다! 🥰오늘은 React 앱을 GitHub Pages에 배포하고,배포 후 발생할 수 있는 Router 오류를 해결하는 방법에 대해 정리해 보겠습니다.1. React 앱 설치먼저, React 앱을 생성합니다.아래 명령어로 새로운 React 프로젝트를 시작해 보세요.yarn create react-app (프로젝트명) 2. 필요한 라이브러리 설치프로젝트에 필요한 라이브러리를 설치합니다.주로 사용하는 react-router-dom, react-query, styled-components, react-icons, sass 등을 설치합니다.yarn add react-router-dom react-query styled-components react-icons sass 3. 프로젝트 빌..