这个配置文件创建的时候,建议只有Chrome和Edge,而我日常开发用的都是Chrome Dev,我想指定为这个版本的Chrome,请问怎么写配置呢?
这个配置文件创建的时候,建议只有Chrome和Edge,而我日常开发用的都是Chrome Dev,我想指定为这个版本的Chrome,请问怎么写配置呢?
解决了,加一行配置"runtimeExecutable": "dev"
即可。
完整配置示例如下:
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"runtimeExecutable": "dev",
"request": "launch",
"name": "针对 localhost 启动 Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}
直接用
type: chrome
启动不行吗?不行的话在插件市场里面一找debugger for xxx
这样的关键词,看看有没有chrome dev
。Debugger for Chrome (Nightly)
我看是有的。