Created
October 24, 2023 07:41
-
-
Save AndrejGajdos/f9800172f4a15559d1508925b8083307 to your computer and use it in GitHub Desktop.
Debugging server side in Next.js
This file contains hidden or 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": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Next.js", | |
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/next", | |
"runtimeArgs": ["dev"], | |
"console": "integratedTerminal", | |
"timeout": 10000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment