개발자의 끄적끄적

[html] MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled 에러 해결방법 본문

개발/html & css

[html] MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled 에러 해결방법

효벨 2021. 10. 25. 11:16
728x90
반응형

[html] MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled 에러 해결방법

 

 

페이지에

 

css 와 js 등 리소스를

 

로드해서 사용하려고 하다보면

 

아래와 같은 오류가 발생하는 경우가 있습니다.

 

MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled

 

위와 같은 오류의 원인은 2가지입니다.

 

1. 해당위치에 파일을 찾지 못한다.

 

2. 로드된 파일의 타입이 정의되어 있지 않다.

 

 

1번의 경우는 말그대로 경로가 잘못되었거나,

 

파일이 없는 경우입니다.

 

2번의 경우

<script src="SRC\_URL"></script>

 

이런식으로 로드된 파일에

 

타입이 지정안된 경우에 발생합니다.

 

타입을 추가하면 아래와 같은 모습이 됩니다.

 

<script src="SRC\_URL" type="application/js"></script>

 

참고들 하세요!

반응형
Comments