Development/Error

[error] Error with Permissions-Policy header: Origin trial controlled feature not enabled: 'interest-cohort'. 오류

mefd 2023. 2. 21. 21:14
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