前段时间,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-配置属性