만족은 하되 안주하지는 말자

기록해야 기억한다

프로그래밍/backend&devOps

[error] Refused to apply style from '...' because its MIME type ('application/json') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

D36choi 2020. 9. 4. 23:12
728x90

문제

잘 로드되던 페이지가 갑자기 스타일 적용이 되지 않는다.

<link rel="stylesheet" href="css/sidebar.css">

헤더파일에 속한 CSS 파일이 제대로 로드되지 않는 것이다.

 

해결

<link rel="stylesheet" href="/css/sidebar.css">

href 주소 맨 앞에 "/" 를 넣어주면 해결된다.