vscode调试的过程中遇到:Cannot connect to runtime process, lanch.json截图如下

从github上克隆下来的项目在本地进行调试,运行时候就报错.求指导.....
图片描述

timeout after 10000 ms - (reason: Cannot connect to the target: connect ECONNREFUSED 127.0.0.1:92,

阅读 17.4k
4 个回答
新手上路,请多包涵

我也遇到这个问题了,我是在linux下,插件是debugger for chrome,我搜了一下依然没有解决,最后换了个vscode的浏览器插件debugger for firefox,就可以了。

新手上路,请多包涵

在launch.json 里增加一个端口配置就解决了,应该是端口冲突了。

  {
    "type": "edge",
    "request": "launch",
    "name": "edge 调试",
    "port": 12015,
    "url": "http://localhost:18888/#/login",
    "webRoot": "${workspaceFolder}/src",
    "breakOnLoad": false,
    "sourceMapPathOverrides": {
      "webpack:///src/*": "${webRoot}/*"
    }
  }
推荐问题
logo
Microsoft
子站问答
访问
宣传栏