admin管理员组

文章数量:1538748

1、首先在VSCode中
安装:VS Code - Debugger for Chrome,如图:

2、配置Chrome调试器:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "启动并打开chrome",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceFolder}"
        }
    ]
}

 

本文标签: 浏览器VSCode