-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VSCode Debugging broke after upgrading from version 9.2.2 to 9.3.0 #11095
Comments
any news about this issue? |
Going to close this ticket. I was able to get debugging in VSCode working by removing This VSCode launch.json works for me. {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug App",
"program": "${workspaceFolder}/node_modules/.bin/next",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}"
}
]
} |
@chadalen and what do I do if I use TypeScript? Placing a breakpoint shows a warning that SourceMaps aren't found. Using |
Same issue here. Wondering, any plans to fix this? |
This issue has been automatically locked due to no recent activity. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you. |
Bug report
Debugging through VSCode no longer works
Describe the bug
When running debugger through VSCode console after upgrading from version 9.2.2 to 9.30 the console spams
"Starting inspector on 127.0.0.1:9229 failed: address already in use" but the address is not in use.
To Reproduce
In VSCode run the debugger
Expected behavior
Should not say "Starting inspector on 127.0.0.1:9229 failed: address already in use". The server should run and you should be able to set breakpoints in VSCode.
System information
Additional context
This does not happen in version 9.2.2
The text was updated successfully, but these errors were encountered: