Created
February 23, 2018 18:58
-
-
Save sydcanem/04e07a13a849aecc5cbd852dab056e82 to your computer and use it in GitHub Desktop.
VSCode Launch config for React SSR
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Chrome", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}", | |
"sourceMaps": true, | |
"sourceMapPathOverrides": { | |
"webpack:///./*": "${workspaceRoot}/*" | |
} | |
}, | |
{ | |
"name": "Node", | |
"type": "node", | |
"request": "attach", | |
"port": 9230, | |
"restart": true, | |
"protocol": "inspector", | |
"sourceMaps": true, | |
"sourceMapPathOverrides": { | |
"webpack:///*": "${workspaceRoot}/*" | |
} | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "Hybrid", | |
"configurations": ["Node", "Chrome"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🎉