diff --git a/app/(client)/layout.tsx b/app/(client)/layout.tsx index 242a6c0..127dae9 100644 --- a/app/(client)/layout.tsx +++ b/app/(client)/layout.tsx @@ -6,6 +6,9 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; const queryClient = new QueryClient(); +export const revalidate = 0; +export const fetchCache = "force-no-store"; + export default function RootLayout({ children, }: { diff --git a/app/layout.tsx b/app/layout.tsx index 53b5b3c..88dc80b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -9,6 +9,9 @@ export const metadata = { description: "Plan. Sprint. Repeat.", }; +export const revalidate = 0; +export const fetchCache = "force-no-store"; + export default function RootLayout({ children, }: {