问题:

在android手机上Reload react native 项目JS server报“error: bundling failed: Error: Unable to resolve module `@babel/runtime/helpers/objectSpread` “的错

我使用的版本信息如下:
"react-native": "^0.55.4"
"react-navigation": "^3.11.0"

报错截图如下:

error: bundling failed: Error: Unable to resolve module `@babel/runtime/helpers/objectSpread`

解决方案:

一开始用报错下方建议的4个步骤方法,尝试后都不行。

最后安装了@babel/core和@babel/runtime包后问题解决

npm install --save-dev @babel/core

npm install --save-dev @babel/runtime

相关文章:

  • 2021-06-02
  • 2021-04-07
  • 2021-12-07
  • 2021-06-08
  • 2021-09-03
  • 2021-05-12
  • 2021-05-16
猜你喜欢
  • 2021-04-23
  • 2021-11-13
  • 2021-05-06
  • 2022-01-12
  • 2021-06-20
  • 2022-01-20
  • 2021-04-05
相关资源
相似解决方案