Created
October 30, 2020 16:45
-
-
Save gaurangrshah/a5d38aea7c422b8d5242e73a16d092e7 to your computer and use it in GitHub Desktop.
#vscode #debug #gatsby #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": [ | |
{ | |
"name": "Launch localhost in Microsoft Edge", | |
"type": "edge", | |
"request": "launch", | |
"url": "http://localhost/8000", | |
"webRoot": "${workspaceFolder}/src" | |
}, | |
{ | |
"name": "Launch index.html in Microsoft Edge", | |
"type": "edge", | |
"request": "launch", | |
"file": "${workspaceRoot}/src" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment