Skip to content

Instantly share code, notes, and snippets.

@modster
Created September 14, 2022 16:54
Show Gist options
  • Save modster/5a34b10667931b4990369c8706839066 to your computer and use it in GitHub Desktop.
Save modster/5a34b10667931b4990369c8706839066 to your computer and use it in GitHub Desktop.
Edge Tools Launch Config
{
"configurations": [
{
"type": "msedge",
"name": "Launch Microsoft Edge",
"request": "launch",
"runtimeArgs": ["--remote-debugging-port=9222"],
"url": "d:\\Projects\\example\\index.html",
"presentation": {
"hidden": true
}
},
{
"type": "msedge",
"name": "Launch Microsoft Edge in headless mode",
"request": "launch",
"runtimeArgs": ["--headless", "--remote-debugging-port=9222"],
"url": "d:\\Projects\\example\\index.html",
"presentation": {
"hidden": true
}
},
{
"type": "vscode-edge-devtools.debug",
"name": "Open Edge DevTools",
"request": "attach",
"url": "d:\\Projects\\example\\index.html",
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"name": "Launch Edge Headless and attach DevTools",
"configurations": [
"Launch Microsoft Edge in headless mode",
"Open Edge DevTools"
]
},
{
"name": "Launch Edge and attach DevTools",
"configurations": ["Launch Microsoft Edge", "Open Edge DevTools"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment