Skip to content

Instantly share code, notes, and snippets.

@DairoCantillo
Last active January 23, 2023 15:51
Show Gist options
  • Save DairoCantillo/263a22141eaa05b7fa749457d92578a2 to your computer and use it in GitHub Desktop.
Save DairoCantillo/263a22141eaa05b7fa749457d92578a2 to your computer and use it in GitHub Desktop.
config debug
{
"version": "1.0.0",
"configurations": [
{
"name": "Start App",
"runtimeArgs": ["start"],
"env": {
"BROWSER": "none"
},
"request": "launch",
"runtimeExecutable": "npm",
"type": "node",
},
{
"type": "chrome",
"request": "launch",
"name": "Run Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "Debug App",
"configurations": ["Start App", "Run Chrome"],
"stopAll": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment