You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "0.1.0",
  3. "configurations": [
  4. {
  5. "name": "Next.js: debug server-side",
  6. "type": "node-terminal",
  7. "request": "launch",
  8. "command": "yarn dev"
  9. },
  10. {
  11. "name": "Next.js: debug client-side",
  12. "type": "pwa-chrome",
  13. "request": "launch",
  14. "url": "http://localhost:3000"
  15. },
  16. {
  17. "name": "Next.js: debug full stack",
  18. "type": "node-terminal",
  19. "request": "launch",
  20. "command": "yarn dev",
  21. "console": "integratedTerminal",
  22. "serverReadyAction": {
  23. "pattern": "started server on .+, url: (https?://.+)",
  24. "uriFormat": "%s",
  25. "action": "debugWithChrome"
  26. }
  27. }
  28. ],
  29. "resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
  30. }