window.originAgentCluster
-
[Javascript] 일부 Chrome 환경에서만 Uncaught DOMException: Blocked a frame with origin 오류 이슈Javascript & TypeScript 2023. 8. 23. 23:11
일부 크롬 브라우저에서 아래와 같은 경고와 오류가 발생한다. 경고: document.domain mutation is ignored because the surrounding agent cluster is origin-keyed. 오류 : Uncaught DOMException: Blocked a frame with origin : “{도메인주소}” from accessing a cross-origin frame. 처음부터 개발하는 단계라면 postMessage를 사용하여 처리하는걸 권장하고 있다. 그러나 시간관계상 당장 수정이 불가능하다면 웹서버에 아래 헤더와 값을 추가해보자 Origin-Agent-Cluster: ?0 설정 시 window.originAgentCluster 값이 false가 된다. i..