Files
dingding-oa-server/.vscode/launch.json
2026-05-27 14:12:10 +08:00

45 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: 调试服务端",
"type": "node-terminal",
"request": "launch",
"command": "pnpm run dev:dev"
},
{
"name": "Next.js: 调试客户端",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: 调试客户端 (Firefox)",
"type": "firefox",
"request": "launch",
"url": "http://localhost:3000",
"reAttach": true,
"pathMappings": [
{
"url": "webpack://_N_E",
"path": "${workspaceFolder}"
}
]
},
{
"name": "Next.js: 全栈调试",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/next/dist/bin/next",
"runtimeArgs": ["--inspect"],
"skipFiles": ["<node_internals>/**"],
"serverReadyAction": {
"action": "debugWithEdge",
"killOnServerStop": true,
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"webRoot": "${workspaceFolder}"
}
}
]
}