Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tannerhallman/15a4e573a791a1a321dc2cd3729d21cd to your computer and use it in GitHub Desktop.
Save tannerhallman/15a4e573a791a1a321dc2cd3729d21cd to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Next: Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Next: Node",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev",
"--inspect"
],
"port": 9229,
"console": "integratedTerminal"
}
],
"compounds": [
{
"name": "Next: Full",
"configurations": ["Next: Node", "Next: Chrome"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment