vscode使用chrome调试

糜单弓
2023-12-01

vsCode使用Chrome调试,无法命中断点的坑
注意:需要配置launch.json中的“webRoot”,路径为代码的根目录
调试步骤:
1、应用商店中搜索“Debugger for Chrome”并安装。
2、生成launch.json文件。
3、修改webRoot路径。

launch.json内容如下:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Chrome",
            "type": "pwa-chrome",
            "request": "launch",
            "url": "http://localhost:8000",
            "webRoot": "${workspaceFolder}/sup/src"
        }
    ]
}
 类似资料: