Computer Programming/React-Native

React-Native Error Case(firebase, module 'idb')

JYCoder 2022. 8. 26. 02:28

Error Message

While trying to resolve module `idb` from file `C:\Users\HP\Desktop\sparta-study\hikingsquirrel\node_modules\@firebase\app\dist\esm\index.esm2017.js`, the package `C:\Users\HP\Desktop\sparta-study\hikingsquirrel\node_modules\idb\package.json` was successfully found. However, this package itself specifies a `main` module field that could not be resolved (`C:\Users\HP\Desktop\sparta-study\hikingsquirrel\node_modules\idb\build\index.cjs`. Indeed, none of these files exist:

 

Solution

If you got the error above, try downgrade the firebase version.

Remove the version you have now and download the old version.

위와 같은 에러가 떴다면, firebase의 version을 낮춰보세요.

아래처럼 cmd에서 기존의 버전을 지우고 이전 버전으로 다시 다운로드를 받아보세요.

 

yarn remove firebase  

expo install firebase@9.6.11

LIST