Skip to content

Instantly share code, notes, and snippets.

@snj33v
Created April 24, 2018 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snj33v/4a7cf59b7300339adf21033e838021df to your computer and use it in GitHub Desktop.
Save snj33v/4a7cf59b7300339adf21033e838021df to your computer and use it in GitHub Desktop.
vscode chromium launch
{
"version": "0.2.0",
"configurations": [{
"name": "Chromium",
"type": "chrome",
"request": "launch",
"runtimeExecutable": "/usr/bin/chromium",
"userDataDir": "/tmp/vscode-chrome-debug",
"runtimeArgs": [
"--temp-profile"
],
"trace": true,
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment