vscode 的launch.json怎么设置可用我的IE11作为默认调试浏览器?
javascript吧
全部回复
仅看楼主
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
level 1
jessylake 楼主
自己顶一下
2018年09月04日 08点09分 2
level 1
去系统把IE11设为默认浏览器[滑稽][大拇指]
2018年09月04日 10点09分 3
1