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 897151f commit 3d55da0Copy full SHA for 3d55da0
examples/tailwind/app/layout.tsx
@@ -14,12 +14,11 @@ export const metadata: Metadata = {
14
/** Root layout */
15
export default function RootLayout({ children }: { children: React.ReactNode }) {
16
return (
17
- <html lang="en">
+ <ServerTarget tag="html" lang="en">
18
<body className={inter.className}>
19
<Core t="background .3s" />
20
- <ServerTarget />
21
{children}
22
</body>
23
- </html>
+ </ServerTarget>
24
);
25
}
0 commit comments