We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbaa6d commit 331ac90Copy full SHA for 331ac90
packages/plugin-rsc/examples/basic/src/framework/entry.ssr.tsx
@@ -28,10 +28,8 @@ export async function renderHTML(
28
}
29
30
// render html (traditional SSR)
31
- const bootstrapScriptContent = options?.debugNojs
32
- ? undefined
33
- : await import.meta.viteRsc.loadBootstrapScriptContent('index')
34
-
+ const bootstrapScriptContent =
+ await import.meta.viteRsc.loadBootstrapScriptContent('index')
35
let htmlStream: ReadableStream<Uint8Array>
36
try {
37
htmlStream = await renderToReadableStream(<SsrRoot />, {
0 commit comments