Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only happened with SSR without suspense case Similar reason to #34474, the prefix (script parts) might be flushed during the render stream causing bad HTML. Use the same tricky to delay the prefix flushing #### Expected ```html <div>content</div> <!-- render stream --> <script>...</script> <!-- prefix --> ``` #### Observed ```html <!-- prefix choked the render stream --> <div <script>...</script> >content</div> ``` Test sample: https://next-react-server-components-r5xocii9r-huozhi.vercel.app/ssr
- Loading branch information