launch.json 758 B

123456789101112131415161718192021222324
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Next.js: debug full stack",
  9. "type": "node",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/node_modules/next/dist/bin/next",
  12. "runtimeArgs": ["--inspect"],
  13. "skipFiles": ["<node_internals>/**"],
  14. "serverReadyAction": {
  15. "action": "debugWithChrome",
  16. "killOnServerStop": true,
  17. "pattern": "- Local:.+(https?://.+)",
  18. "uriFormat": "%s",
  19. "webRoot": "${workspaceFolder}"
  20. },
  21. "cwd": "${workspaceFolder}"
  22. }
  23. ]
  24. }