This solves the problem we had debugging in vscode on ios. The problem was that when an address was not set the plugin used 127.0.0.1 when forcing localhost it worked, but now I am migrating the old vscode-chrome-debug-core to vscode-cdp-proxy which uses ws below and when using the localhost address it resolves it as 127.0.0.1 and the cli does not accept the connection.
I have tried chromeDevTool and it still works with this change
This solves the problem we had debugging in vscode on ios. The problem was that when an address was not set the plugin used 127.0.0.1 when forcing localhost it worked, but now I am migrating the old
vscode-chrome-debug-core
tovscode-cdp-proxy
which usesws
below and when using thelocalhost
address it resolves it as 127.0.0.1 and the cli does not accept the connection. I have tried chromeDevTool and it still works with this change