使用launch.json启动Edge Canary



前段时间,launch.json中的设置会启动Edge Canary

"type": "msedge", 
"version": "canary",
"request": "launch",

现在它打开法线边。有什么我不知道的变化吗?

感谢

您需要使用runtimeExecutable属性:

{
"request": "launch",
"type": "msedge",
"runtimeExecutable": "canary",
}

https://code.visualstudio.com/docs/nodejs/browser-debugging#_launch-配置属性

相关内容

  • 没有找到相关文章

最新更新