| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Next.js: debug server-side",
- "type": "node-terminal",
- "request": "launch",
- "command": "npm run dev"
- },
- {
- "name": "Next.js: debug client-side",
- "type": "msedge",
- "request": "launch",
- "url": "https://localhost:3000",
- "runtimeExecutable": "C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe",
- "sourceMaps": true,
- "sourceMapPathOverrides": {
- "webpack:///./*": "${webRoot}/*"
- }
- },
- {
- "name": "Full Stack Debug",
- "type": "node",
- "request": "launch",
- "program": "${workspaceFolder}/node_modules/next/dist/bin/next",
- "args": ["dev", "--experimental-https"],
- "runtimeArgs": ["--inspect"],
- "skipFiles": ["<node_internals>/**", "**/node_modules/**"],
- "serverReadyAction": {
- "action": "debugWithEdge",
- "killOnServerStop": true,
- "pattern": "- Local:.+(https://localhost:3000)",
- "uriFormat": "%s",
- "webRoot": "${workspaceFolder}"
- }
- }
- ]
- }
|