Mixed content 문제 해결하기(netlify 배포 오류 생겼을 때)

📌 netlify에 배포할 때, 환경변수까지 설정했는데도 Mixed content ~ 라는 에러 문구와 함께 화면이 뜨지 않는 오류가 발생하는 상황이 있었다.
( Mixed Content 에러문은 https사이트에서 http로 리소스를 로드하도록 요청받을 때 발생한다고 한다. )

This request has been blocked; the content must be served over HTTPS.


📌 html파일 head부분에 다음 한 줄을 추가해주면 된다!!

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">

https://stackoverflow.com/questions/35178135/how-to-fix-insecure-content-was-loaded-over-https-but-requested-an-insecure-re

좋은 웹페이지 즐겨찾기