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 8767e0c commit 46ce2aaCopy full SHA for 46ce2aa
e2e/solid-start/serialization-adapters/src/routes/__root.tsx
@@ -8,6 +8,7 @@ import {
8
useRouterState,
9
} from '@tanstack/solid-router'
10
import { TanStackRouterDevtools } from '@tanstack/solid-router-devtools'
11
+import { HydrationScript } from 'solid-js/web';
12
import type {JSX} from 'solid-js';
13
import appCss from '~/styles/app.css?url'
14
@@ -37,9 +38,10 @@ function RootDocument({ children }: { children: JSX.Element }) {
37
38
return (
39
<html>
40
<head>
- <HeadContent />
41
+ <HydrationScript />
42
</head>
43
<body>
44
+ <HeadContent />
45
<div class="p-2 flex gap-2 text-lg">
46
<h1>Serialization Adapters E2E Test</h1>
47
<Link
0 commit comments