SyntaxError: Cannot use import statement outside a module 오류

Jaeseok Han·2023년 8월 11일
0
import i18next from 'i18next';
^^^^^^
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
SyntaxError: Cannot use import statement outside a module

해결 방법

해당 오류에 해결방법이 적혀있어 그대로 설정하였다.
package.json 파일에 해당 부분을 추가
package.json

{
  "type" : "module",
  "dependencies": {
    ...
  }
}

0개의 댓글