### Describe the bug Simply just follow the instruction on https://nextjs.org/docs/pages/building-your-application/configuring/mdx#remote-mdx, and try rendering the MDX including ~math inline (like `$1 + 1 = 2$`)~ anything like `# Hello`, you'll see the error. <img width="913" alt="Image" src="https://github.com/user-attachments/assets/692d7bae-d0f1-47e0-9103-246e65c017f9" /> ```sh .... GET / 500 in 711ms kj ⨯ [TypeError: Cannot read properties of undefined (reading 'stack')] { digest: '3975977629' } ⨯ [Error: failed to pipe response] { [cause]: [TypeError: Cannot read properties of undefined (reading 'stack')] { digest: '3975977629' } } GET / 500 in 835ms ``` Cannot do the simplest thing as following. ```tsx import { MDXRemote } from "next-mdx-remote/rsc"; export default function RemoteMdxPage() { const mdxText = "# Hello"; return <MDXRemote source={mdxText} />; } ``` It seems like a fatal error, completely nothing will be shown in the browser. ### Reproduction https://github.com/LumaKernel/nextjs-issue-mdx-remote-rsc ### next-mdx-remote version 5.0.0