개발공작소
article thumbnail
728x90
반응형

import/export 정리를 하는데 아래와 같은 에러 발생

에러

Uncaught SyntaxError: Cannot use import statement outside a module

 

그냥 <script>에 type="module"만 추가해주면 된다.

 

-- 변경전
<script>
    import * as starImport from './shopList.js';
    console.log(starImport.productObj);
    console.log(starImport.gamePack);
</script>

-- 변경후
<script type="module">
    import * as starImport from './shopList.js';
    console.log(starImport.productObj);
    console.log(starImport.gamePack);
</script>
728x90
반응형
profile

개발공작소

@모찌바라기

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!