Skip to content

Commit

Permalink
Test build
Browse files Browse the repository at this point in the history
  • Loading branch information
vladokuskov committed May 27, 2024
1 parent beda4a8 commit a058896
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ export const metadata = {
},
};

export const dynamic = 'force-dynamic';

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" data-theme="light" suppressHydrationWarning={true}>
<html lang="en" data-theme="dark" suppressHydrationWarning={true}>
<body
className={`${roboto.variable} ${inter.variable}`}
suppressHydrationWarning={true}
Expand Down

0 comments on commit a058896

Please sign in to comment.