Skip to content

Instantly share code, notes, and snippets.

@johnloy
Last active February 11, 2022 13:20
Show Gist options
  • Save johnloy/81a939b3f4b53ab197fbff81e2e45947 to your computer and use it in GitHub Desktop.
Save johnloy/81a939b3f4b53ab197fbff81e2e45947 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": "${workspaceFolder}/node_modules/.bin/next",
"env": {
"NODE_OPTIONS": "--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