Created
October 23, 2021 21:44
-
-
Save 0xGabi/f7d643b9fffc3d89d43d062c34a97bb1 to your computer and use it in GitHub Desktop.
VSCode configuration to debug websites in Brave
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Brave", | |
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser", | |
"userDataDir": true, | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment