728x90
반응형
github 페이지에서 react 프로젝트를 호스팅 하려고 하는데 Error with Permissions-Policy header: Origin trial controlled feature not enabled: 'interest-cohort'. 오류가 발생했다.
[해결]
** github repo 이름에 따라 경로를 작성해야한다.
전
<Router>
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</Router>
후
<Router>
<Routes>
<Route path="/{github repo 이름}" element={<Home />} />
</Routes>
</Router>
728x90
반응형
'Development > Git' 카테고리의 다른 글
| [study]커밋할때나 브랜치명 만들때 사용하는 규칙 (0) | 2025.11.21 |
|---|---|
| [study]회사 계정으로 개인 계정 깃허브 레포지토리에 접근하는 방법 (0) | 2025.11.21 |
| [study] git repository-branch 만들고, 원격저장하기 (0) | 2024.01.03 |
| [error] 'git'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. (0) | 2023.02.02 |