0

嗨,我在 VS Code 中直接运行 Chrome 调试器时遇到问题。我正在研究 Linux Mint。这就是我的 launch.json 文件的样子:

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
   
   
    {
        "type": "pwa-chrome",
        "request": "launch",
        "name": "Launch Chrome against localhost",
        "file": "${workspaceFolder}/index.html"
        
        
      
    }
]

}

现在我尝试运行调试器并且错误消息说:无法启动浏览器:“无法找到稳定的 Chrome 版本。可用的自动发现版本是:[“dev”]。您可以在 launch.json 中将“runtimeExecutable”设置为其中之一,或提供浏览器可执行文件的绝对路径。”

根据我的建议,我将 runtimeExecutable 添加到 chrome 可执行文件中,如下所示:

runtimeExecutable:"/opt/google/chrome/google-chrome" 现在错误消息说:

无法附加到浏览器。

我的机器上安装了谷歌浏览器版本:83.0.4103.116-1。

提前感谢您的帮助

错误 当前配置

4

2 回答 2

2

我也在 Linux Mint 上使用 Chromium。我解决了这个问题

debug.javascript.usePreview:在 VS 设置中为 false,

本答案中所述

于 2020-08-26T09:10:25.807 回答
1

您也需要添加webroot属性试试这个

{
    "name": "Launch Chrome",
    "request": "launch",
    "type": "pwa-chrome",
    "url": "${workspaceFolder}/index.html",
    "webRoot": "${workspaceFolder}"
},
于 2020-06-27T14:33:43.217 回答