Last active
January 29, 2017 20:22
-
-
Save fdjones/a3b0289445c9d1e9fc3398f0a30cf69a to your computer and use it in GitHub Desktop.
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
//initially you get: | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Chrome against localhost", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:8080", | |
"webRoot": "${workspaceRoot}" | |
}, | |
{ | |
"name": "Attach to Chrome", | |
"type": "chrome", | |
"request": "attach", | |
"port": 9222, | |
"webRoot": "${workspaceRoot}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment