Debugger: Breakpoints in server code are ignored

What I’m trying to do:
Set breakpoints in server code which is called by the client.

What I’ve tried and what’s not working:
Only works when I set a breakpoint in client code first, and click “Resume”.

This breakpoint below gets ignored unless a breakpoint is also set on the client code (see above):

CleanShot 2025-03-25 at 18.13.04@2x

Clone link:
share a copy of your app

thanks for reporting, moved to bug reports

if you remove app_tables from the client module it’ll work as expected
app_tables ends up doing a server call to describe itself, which causes the debugger to blow up on the initial request under the specific circumstance you describe.

2 Likes