Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

launch Edge Canary with launch.json

Some time ago, the setting in launch.json would launch Edge Canary

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

Now it opens the normal edge instead. Any changes I am not aware of?

Thanks

like image 557
Ofer Gal Avatar asked Nov 16 '25 14:11

Ofer Gal


1 Answers

You'll need to use the runtimeExecutable property:

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

https://code.visualstudio.com/docs/nodejs/browser-debugging#_launch-configuration-attributes

like image 200
ackushiw Avatar answered Nov 18 '25 19:11

ackushiw



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!