Skip to content

Instantly share code, notes, and snippets.

@dkgrieshammer
Created May 25, 2020 09:56
Show Gist options
  • Save dkgrieshammer/2920288011a6ba99fd341551b083a261 to your computer and use it in GitHub Desktop.
Save dkgrieshammer/2920288011a6ba99fd341551b083a261 to your computer and use it in GitHub Desktop.
Debugging Config for Visual Studio Code with Chrome DevTools and Create React App - custom userDataDir to save React & Redux DevTools and Extensions permanently 🥳
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src",
"userDataDir":"/path/to/your/preferred/dir" // This needs to be set by you
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment