본문 바로가기
: ) Web/웹 스터디

[HTML/CSS] 경로설정 오류 Refused to apply style from~is not a supported stylesheet MIME type, and strict MIME checking is enabled.

by miiinn 2023. 12. 13.

 

계속 CSS가 적용이 안 되어

크롬 개발자도구로 디버깅 해봤는데 다음과 같은 오류가 나왔다.

 

Refused to apply style from 'http://127.0.0.1:5500/sass_hw/hw1.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

 

이는 경로 설정이 잘못된 것으로 html파일의

        <link href="hw1.css" rel="stylesheet">

 

이 부분에서 html이 css를 찾을 수 없는 경우이다.

 

보니까 html이 다른 파일 안에 있었다.

따라서 같은 폴더로 옮긴후에 원활히 작동되었다.