Uncaught SyntaxError: Cannot use import statement outside a module 에러 해결

Benjamin·2022년 10월 27일
0

Uncaught SyntaxError: Cannot use import statement outside a module

index.js 파일에 import 구문을 사용한 상태로 html파일에서 script태그에 연결했더니 위 에러가 발생하였다.

해결방법

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

<script> 태그 내에 type="module" 을 추가해주면 된다!

profile
개발자 되기 프로젝트!

0개의 댓글