본문 바로가기

JavaScript/Error

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

클로버 동영상 기능 개발 중

http://localhost:8080/video/1

다음과 같이 접근 했을 경우 이러한 에러가 발생하였다.

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

index.html에 <base href="/"> 를 추가 함으로써 해결했다.

원인도 모르고 왜 이렇게 해야되는지도 모른다 ><...핫...

<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8">
  <base href="/">
  <title>Clova AI Video</title>
</head>
<body>
  <div id="app"></div>
</body>
</html>