I have issues to start a debugger. I am using VS Code and I installed the react native tools. My launch.json looks like this
"version": "0.2.0",
"configurations": [
{
"name": "Attach to packager",
"request": "attach",
"type": "reactnative",
"cwd": "${workspaceFolder}",
"port": 19001
}
],
}
When I click on Debug Remote JS within my IOS simulator, I am redirected to http://localhost:19000/debugger-ui/
Here, it says Status: Disconnected from proxy. Attempting reconnection. Is node server running?
Anyone an idea?