Skip to content

Instantly share code, notes, and snippets.

@theClarkSell
Created February 27, 2022 13:56
Show Gist options
  • Save theClarkSell/d5d3fef04895d44e340c6186f6117489 to your computer and use it in GitHub Desktop.
Save theClarkSell/d5d3fef04895d44e340c6186f6117489 to your computer and use it in GitHub Desktop.
SvelteKit VSCode debugging configuration
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"name": "Launch Brave macos",
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment