Replies: 4 comments 10 replies
-
Same, any pointers? |
Beta Was this translation helpful? Give feedback.
-
I have the same issue. Obviously, the unbound breakpoints have something to do with sourcemaps. I don't know if these are related, but I get the following errors in the vscode Debug Console:
Maybe this will help someone figure out the problem... |
Beta Was this translation helpful? Give feedback.
-
If I run npx nx build site then this command mostly respects the setting of: productionBrowserSourceMaps in next.config.js except that it does not generate map files for any of my files in the API subdirectory. Does anyone know why it would skip these files However, when I run: npx nx serve site it does not appear to generate any map files. Does anyone know why this is happening or the best way to debug? |
Beta Was this translation helpful? Give feedback.
-
I had the same issue with unbound breakpoints only with API files. Solved by the following:
All breakpoints become active. Hope it helps! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I've followed the instructions at https://nextjs.org/docs/advanced-features/debugging
I started the nextjs server with
yarn dev
Then I attached the debugger successfully to the running server.
However when I put break points in my API files, I get the greyed out
Unbound breakpoint
.Why is this happening?
Beta Was this translation helpful? Give feedback.
All reactions