Skip to content

Instantly share code, notes, and snippets.

@quinoescobar
Created January 9, 2019 15:24
Show Gist options
  • Save quinoescobar/13762f5e36e92e2bcdf6e2f222d2cf38 to your computer and use it in GitHub Desktop.
Save quinoescobar/13762f5e36e92e2bcdf6e2f222d2cf38 to your computer and use it in GitHub Desktop.
VS Code Debugger: Angular + Chronium
{
"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