Created
November 4, 2024 20:23
-
-
Save npgenx/d4c75cd5433effce393d30bda11e7f81 to your computer and use it in GitHub Desktop.
Next.js VSCode debugging options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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}" | |
} | |
} | |
] | |
} |
Author
npgenx
commented
Nov 4, 2024
- Full Stack for NextJs 14+ using app router - https://himynameistim.com/blog/debugging-nextjs-14-with-vscode
- NextJS recommendations: Next.js https://nextjs.org/docs/pages/building-your-application/configuring/debugging
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment