Skip to content

Instantly share code, notes, and snippets.

@n3tn0de
Created July 12, 2018 14:54
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 n3tn0de/ef54e55fae59aa240f68d188697ba9b5 to your computer and use it in GitHub Desktop.
Save n3tn0de/ef54e55fae59aa240f68d188697ba9b5 to your computer and use it in GitHub Desktop.
vscode-chrome-cra-attach
{
// 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.1.0",
"configurations": [
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"urlFilter": "http://localhost:3000*",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"skipFiles": [
"chrome-extention:",
"extentions::*"
],
"trace": true,
"sourceMapPathOverrides": {
"/app/src/*": "${webRoot}/src/*"
} ,
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment