I have created a basic hello world project here
https://github.com/BrandonMathis/vercel-test-debugger
When I run NODE_OPTIONS='--inspect' vercel dev, I see this
Debugger listening on ws://127.0.0.1:9229/c3ca97bb-dd9a-4ef5-bee4-6d94ce06d9aaFor help, see: https://nodejs.org/en/docs/inspectorVercel CLI 39.2.5> Ready! Available at http://localhost:3000However, when I launch my chrome debugger nothing is happening. None of my console.log statements are in the chrome inspector console and none of my debugger statements halt code execution.
What is the current best practice to use the chrome debugger with vercel cli locally?

