Created
May 25, 2020 09:56
-
-
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 🥳
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
{ | |
// 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