skip to Main Content

After update react-native v73.1 i’m getting below error when try to run the app in windows. error Cannot start server in new window because no terminal app was specified.
Anyone faced this issues earlier?

In Mac machine there is no issues only windows facing this issue

2

Answers


  1. Looks like Metro has lost support for Windows Terminal and only allows a bash terminal. I had to launch it once in git bash, and keep the Metro window open, before being able to launch react-native in Windows Terminal.

    It seems there isn’t much we can do, aside from waiting for react-native and Metro to fix it.

    I have created an issue there: https://github.com/facebook/metro/issues/1160

    enter image description here

    Login or Signup to reply.
  2. You can try to use "npm run start" script.
    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search