Created
January 9, 2019 15:24
-
-
Save quinoescobar/13762f5e36e92e2bcdf6e2f222d2cf38 to your computer and use it in GitHub Desktop.
VS Code Debugger: Angular + Chronium
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": "chrome", | |
"request": "launch", | |
"name": "Launch Chromium against localhost", | |
"url": "http://localhost:4200/#", | |
"webRoot": "${workspaceFolder}", | |
"runtimeExecutable": "/usr/bin/chromium-browser", | |
"runtimeArgs": [ | |
"--new-window", | |
"-user-data-dir=\"/${workspaceFolder}/DevProfile\"", | |
"--remote-debugging-port=9222", | |
"--disable-background-networking" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment