Skip to content

Commit 331ac90

Browse files
committed
cleanup
1 parent efbaa6d commit 331ac90

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/plugin-rsc/examples/basic/src/framework/entry.ssr.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ export async function renderHTML(
2828
}
2929

3030
// render html (traditional SSR)
31-
const bootstrapScriptContent = options?.debugNojs
32-
? undefined
33-
: await import.meta.viteRsc.loadBootstrapScriptContent('index')
34-
31+
const bootstrapScriptContent =
32+
await import.meta.viteRsc.loadBootstrapScriptContent('index')
3533
let htmlStream: ReadableStream<Uint8Array>
3634
try {
3735
htmlStream = await renderToReadableStream(<SsrRoot />, {

0 commit comments

Comments
 (0)