I have an app that uses Next.js 13. I have been running it with Turbopack and a few commits ago it stopped working. It now fails with a vague error. It says TypeError: Class extends value #
in the browser, Uncaught ReferenceError: $RefreshSig$ is not defined
in the browser console, Error during SSR Rendering TypeError: Class extends value #<Object> is not a constructor or null
. This is what it looks like in the browser:
If I could just get a more specific error I could start to debug. The launch script in my package.json file looks like this for turbopack "next dev --turbo --show-all"
So how do I get a more specific traceable error?