vscode使用Debugger for Chrome配置
程序员文章站
2022-03-17 14:29:09
...
使用VSCODE开发html的时候,难免少了调试。可是按下F5会自动打开chrom。并且打开 localhost:8080,如图:
这时候只需要改一下配置文件
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}"
},
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceRoot}"
},
{
"name": "debug index",
"type": "chrome",
"request": "launch",
"sourceMaps": false,
"file": "${workspaceRoot}/index.html"
}
]
}
注意画红框的地方
这里是添加一个配置,名称为: debug index
下面有个 "file": "${workspaceRoot}/index.html"
这句配置的作用是打开自己目录下的index.html文件,所以想打开其他文件那就修改为其他目录即可。
假如还想打开 new_file.html
的话,可以直接把index.html改成new_file.html或者复制一份{}
中的配置进行修改。记得修改name
的配置和file
的配置即可
运行:
配置文件准备好后,就是运行了。打开调试页面,这里记得选择对应的配置
然后按F5
运行,就可以在浏览器中看到自己的index.html页面了
下一篇: 使用Hbuilder打包WebApp
推荐阅读
-
使用vscode 编辑调试php 配置方与VSCode断点调试PHP
-
vscode使用editorconfig插件以及.editorconfig配置文件说明详解
-
使用VScode 插件debugger for chrome 调试react源码的方法
-
[视频教程] 配置vscode的PHP自动补全提示与使用Xdebug进行远程调试debug
-
vsCode中使用ESLint配置全过程
-
VSCode调试Html网页(使用本机 Chrome调试)
-
VSCode与CMake搭配使用之基本配置
-
vscode使用Better Align插件以及快捷键配置实例
-
vscode设置debugger for chrome,亲试可行
-
vscode debuger for chrome 使用