Skip to content

Instantly share code, notes, and snippets.

@dmorosinotto
Created February 3, 2022 17:58
Show Gist options
  • Save dmorosinotto/3496f139d8e066ba32de9c3ecf94dc6c to your computer and use it in GitHub Desktop.
Save dmorosinotto/3496f139d8e066ba32de9c3ecf94dc6c to your computer and use it in GitHub Desktop.
VSCode launch.json - to Debug with Edge
{
"version": "0.2.0",
"configurations": [{
"type": "pwa-msedge",
"request": "launch",
"name": "webdebug",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "stable",
"runtimeArgs": ["--headless"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment