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 > Error' 카테고리의 다른 글
[error] xampp 사용중 발생한 에러 (0) | 2023.03.09 |
---|---|
[error] (node:27064) [MONGOOSE] DeprecationWarning: (0) | 2023.02.21 |
[error] react로 gitPage에 build 했을 때 이미지 오류 (0) | 2023.02.21 |
[error] 'git'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. (0) | 2023.02.02 |
[error] -TypeError: Cannot read properties of undefined (reading 'pathname') (0) | 2023.01.24 |