next(react) 框架 VScode 调试
.vscode/launch.json
{ "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Launch Chrome", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}" }, {//这里是关键 "type": "node", "request": "launch", "name": "Launch Next.js", "runtimeExecutable": "npm", "runtimeArgs": ["run-script", "debug"], "port": 9229 } ], "compounds": [ { "name": "Debug Next.js + Chrome", "configurations": ["Launch Next.js", "Launch Chrome"] } ] }

浙公网安备 33010602011771号