문제 상황

js 파일에서 다른 js 파일을 import 하는 과정에서 아래 오류 발생

Uncaught SyntaxError: Cannot use import statement outside a module

 

해결 방안

js 파일을 호출하는 jsp 파일의 script 태그에 `type="module"`이라는 속성과 값을 추가

    <!-- Render dashboard charts -->
    <script type="module" src="/resources/admin/js/dashboard-analytics-injection.js"></script>

 

+ Recent posts