EXPO: Unable to resolve module ‘./debugger

前端 未结 12 1737
猫巷女王i
猫巷女王i 2021-02-05 02:15

After a reload my app has stopped loading.

I have tried on both emulators and 2 real devives, android and ios.

The error is:

Error: Unabl

相关标签:
12条回答
  • 2021-02-05 02:58

    I checked the Maintain Priority checkbox in the browser's debugger tab as stated here because I was looking for a way to get rid of the Remote debugger is in a background tab warning. Once I reloaded, no more Remote debugger warning and no more unable to resolve module debugger warning.

    0 讨论(0)
  • 2021-02-05 02:59

    I got the same issue, press 'ctrl-m' have no response, so I go to the "Android virtual device" and wipe out all data of my current device and re-loading everything again. It work!!!

    0 讨论(0)
  • 2021-02-05 03:03

    I solved this error by stopping the debugger cmd + d && Stop debugging then doing a hard reload on the open debugger tab in chrome alt + control + click on reload button and choose Empty cache and hard reload then restart debugger.

    0 讨论(0)
  • 2021-02-05 03:04

    In my case ,I have updated react-native verison and the debugger broke.

    Run npm i react-devtools-core in order to update debugger.

    0 讨论(0)
  • 2021-02-05 03:08

    I reinstalled the Expo application, and the problem disappeared. Maybe it will help someone, too.

    0 讨论(0)
  • 2021-02-05 03:09

    This can also happen if you moved your code modules into another directory like /src in order to take advantage of absolute path imports by using the module-resolver plugin in babel.config

    0 讨论(0)
提交回复
热议问题