Skip to content

Instantly share code, notes, and snippets.

@npgenx
Created November 4, 2024 20:23
Show Gist options
  • Save npgenx/d4c75cd5433effce393d30bda11e7f81 to your computer and use it in GitHub Desktop.
Save npgenx/d4c75cd5433effce393d30bda11e7f81 to your computer and use it in GitHub Desktop.
Next.js VSCode debugging options
{
"version": "0.2.0",
"configurations": [
{
"name": "Modified: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"serverReadyAction": {
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
},
{
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev-inspect"
},
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/.bin/next",
"runtimeArgs": [
"--inspect"
],
"skipFiles": [
"<node_internals>/**"
],
"serverReadyAction": {
"action": "debugWithChrome",
"killOnServerStop": true,
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"webRoot": "${workspaceFolder}"
}
}
]
}
@npgenx
Copy link
Author

npgenx commented Nov 4, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment