From dc410e240410baa8631f186c072d6669f1c189bd Mon Sep 17 00:00:00 2001 From: Sol Irvine Date: Tue, 31 Oct 2023 16:03:50 +0900 Subject: [PATCH] Update layout.tsx --- app/[locale]/shop-list/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/[locale]/shop-list/layout.tsx b/app/[locale]/shop-list/layout.tsx index 16fd7989e..8ec725c55 100644 --- a/app/[locale]/shop-list/layout.tsx +++ b/app/[locale]/shop-list/layout.tsx @@ -1,5 +1,7 @@ import { Suspense } from 'react'; +export const revalidate = 300; // 5 minutes in seconds + export default function Layout({ children }: { children: React.ReactNode }) { return {children}; }