Force dynamic

This commit is contained in:
Atridad Lahiji 2023-11-19 17:31:53 -07:00
parent 2d94e6e928
commit e461448f93
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

View file

@ -8,6 +8,7 @@ const queryClient = new QueryClient();
export const revalidate = 0;
export const fetchCache = "force-no-store";
export const dynamic = "force-dynamic";
export default function RootLayout({
children,

View file

@ -11,6 +11,7 @@ export const metadata = {
export const revalidate = 0;
export const fetchCache = "force-no-store";
export const dynamic = "force-dynamic";
export default function RootLayout({
children,

View file

@ -1,5 +1,3 @@
export const dynamic = "force-static";
export default function Home() {
return (
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">