Created
February 3, 2022 17:58
-
-
Save dmorosinotto/3496f139d8e066ba32de9c3ecf94dc6c to your computer and use it in GitHub Desktop.
VSCode launch.json - to Debug with Edge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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