vscode 调试html页面无法访问此网站 localhost 拒绝了我们的连接请求
之前用vscode运行vue,运行里配置成本地。然后HTML要调试在chrome中运行,就报了这样的错误,记录一下,下次不会再错。找到lauch.json文件。输入{"name": "chrome调试","type": "chrome","request": "launch","file":"${file}","runtimeExecutable":"C:\\.
·
之前用vscode运行vue,运行里配置成本地。然后HTML要调试在chrome中运行,就报了这样的错误,记录一下,下次不会再错。找到lauch.json文件。输入
{
"name": "chrome调试",
"type": "chrome",
"request": "launch",
"file":"${file}",
"runtimeExecutable":"C:\\ProgramFiles\\Chrome\\chrome.exe",
//:这里写自己浏览器的安装路径
"sourceMaps":true,
"webRoot": "${workspaceRoot}",
"port":9222
}
重新再调试,就可以在浏览器中运行html了
更多推荐
已为社区贡献1条内容
所有评论(0)