JS/error
[JS] Failed to load module script
➤ 표시 내용 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 할때 해당 파일의 경로가 잘못되었을 경우 흔히 나온다. React.js의 경우 import 파일 경로를 ./ 와 .js를 생략할 수 있지만, 리액트를 사용하지 않은 경우, 확장자와 경로를 정확하게 해야한다. ➤ 해결법 파일의 경로와 확장자명을 잘 밝혀서 쓰면 된다. 상대 경로와 절대 경로에 대한 이해가 부..