跳至正文

配置 VSCode 调试 V2

标签:

因为新版 VSCode 自带调试功能,最新配置如下:

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Chrome",
            "request": "launch",
            "type": "pwa-chrome",
            "url": "http://localhost:3000",
            "webRoot": "${workspaceFolder}"
        }
    
    ]
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注