반응형
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>
반응형
'Front-End' 카테고리의 다른 글
[JS] FOIT, FOUT 문제 해결을 위한 웹폰트 최적화 하기 (0) | 2024.05.23 |
---|---|
손 쉬운 CSS 작성이 가능한, Tailwind CSS 설치&사용하기 (0) | 2024.05.12 |
[JS, CSS, NGINX] Vanilla JS 로 SPA 구현하기 (2) | 2024.05.12 |
[Github, 배포] Github Actions으로 환경변수(.env) 관리하기 (0) | 2024.05.12 |
[React] Recoil 새로고침 시 데이터 유지하기 (0) | 2024.05.12 |