Skip to content

Commit 32a3533

Browse files
committed
add explicit ssr
1 parent 4cf1969 commit 32a3533

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

e2e/react-start/server-functions/src/routes/redirect-test-ssr/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const $redirectServerFn = createServerFn({ method: 'GET' }).handler(
1111

1212
export const Route = createFileRoute('/redirect-test-ssr/')({
1313
component: RouteComponent,
14-
// NOTE: No SSR options set - should work fine in React
14+
ssr: true,
1515
})
1616

1717
function RouteComponent() {

e2e/solid-start/server-functions/src/routes/redirect-test-ssr/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const $redirectServerFn = createServerFn({ method: 'GET' }).handler(
1111

1212
export const Route = createFileRoute('/redirect-test-ssr/')({
1313
component: RouteComponent,
14-
// NOTE: No 'ssr: data-only' - this should cause the issue
14+
ssr: true,
1515
})
1616

1717
function RouteComponent() {
Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)