로컬에서 크롬을 통해 html파일을 실행할 때 크로스도메인(CrossDomain) 에러가 발생하는 경우가 있다.

'Access-Control-Allow-Origin' header is present on the requested resource'

 

이럴땐 아래와 같이 크로스도메인을 무시하고 작업을 진행할 수 있다.

크롬 실행아이콘에서 오른쪽 버튼 누르고 속성으로 들어간다.

[대상]에서 기존에는 --disable-web-security 만 붙히면 됐는데 

  지금은 --user-data-dir 인자를 추가로 더 붙혀야 한다.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir="C:\chrome"

 

+ Recent posts