Skip to content

Instantly share code, notes, and snippets.

@j2is
Created March 2, 2020 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j2is/60e0f9a8451e5d9c244faa02e821d4ad to your computer and use it in GitHub Desktop.
Save j2is/60e0f9a8451e5d9c244faa02e821d4ad to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Next: Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack:///*": "${webRoot}/*"
}
},
{
"type": "node",
"request": "launch",
"name": "Next: Node",
"runtimeExecutable": "${workspaceFolder}/node_modules/next/dist/bin/next",
"env": {
"NODE_OPTIONS": "--inspect-brk"
},
"sourceMapPathOverrides": {
"webpack:///*": "${workspaceFolder}/*"
},
"port": 9229,
"console": "internalConsole"
}
],
"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