我无法获得任何调试配置来使用打字稿与断点和nextJS配合使用……有人可以和我分享吗?
谢谢
答案 0 :(得分:1)
这是我的.vscode/launch.json
:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/node_modules/next/dist/bin/next"
}
]
}
在2020年6月为我使用Next.js v9.4.4。