Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Last active December 12, 2022 10:55
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 rafaelmaeuer/4804a40694f20765ac8bd4c4d71e9c7d to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/4804a40694f20765ac8bd4c4d71e9c7d to your computer and use it in GitHub Desktop.
// launch.json for Chrome
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Debug with Chrome",
"url": "http://localhost:4000",
"webRoot": "${workspaceFolder}/app"
}
]
}
// launch.json for Brave
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Debug with Brave",
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",
"userDataDir": true,
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
//launch.json for Firefox
{
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "launch",
"name": "Debug with Firefox",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment