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": {
...
}
}