我已将此片段插入launch.json文件中。它总是打开chrome,并停留在about:blank,然后vscode给出超时错误。我按照此处的步骤构建了launch.json文件。 https://github.com/Microsoft/vscode-recipes/tree/master/Next-js并对其进行了修改,以针对chrome canary运行。
{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome Canary",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/",
"runtimeExecutable": "C:/Users/myusername/AppData/Local/Google/Chrome SxS/Application/chrome.exe",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Next: Node",
"runtimeExecutable": "next",
"runtimeArgs": [
"--inspect"
],
"port": 9229,
"console": "integratedTerminal"
}
],
"compounds": [
{
"name": "Next: Full",
"configurations": [
"Next: Node",
"Chrome Canary"
]
}
]
}
Debug Nextjs program without custom server, use the configuration:
Debug Nextjs program with custom server, use the configuration: