level 1
jessylake
楼主
现在是用chrome作为默认调试浏览器:
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "使用本机chrome调试",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}",
"file":"${file}" //这个是在浏览器中要运行的文件
}
]
}
应该怎么改呢?
2018年09月04日 07点09分
1
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "使用本机chrome调试",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}",
"file":"${file}" //这个是在浏览器中要运行的文件
}
]
}
应该怎么改呢?