Skip to content

Instantly share code, notes, and snippets.

@benloeffel
Created June 14, 2019 14:13
Show Gist options
  • Save benloeffel/d4879f3d314850e1d1e374a2a7f136d5 to your computer and use it in GitHub Desktop.
Save benloeffel/d4879f3d314850e1d1e374a2a7f136d5 to your computer and use it in GitHub Desktop.
Vistual Studio Code Debug - NextJS Version > 8.x.x
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Next: Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend"
},
{
"type": "node",
"request": "launch",
"name": "Next: Node",
"runtimeExecutable": "${workspaceFolder}/frontend/node_modules/.bin/next",
"cwd": "${workspaceFolder}/frontend",
"runtimeArgs": ["--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