Front-End

[JS] Expected a JavaScript module script but the server responded with a MIME type of "text/html". 에러 해결하기

madylin 2024. 5. 12. 19:46
반응형

App.js:1 Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.

라는 에러가 발생했다.

 

보통 import, export 시 파일 명이나 경로가 잘 못 되었을 경우 발생한다고 한다.

 

나의 경우에는 index.html 파일에 아래처럼 상대경로인 ./src/App.js 라고 써서 발생했던 문제였다.

<script type="module" src="./src/App.js"></script>

 

. 을 지워 절대경로로 바꾸어 주니 에러가 해결되었다!

<script type="module" src="/src/App.js"></script>

 

 

 

출처

반응형