diff --git a/src/shared/utils/mw-get.ts b/src/shared/utils/mw-get.ts index aa3ced8..8ada47e 100644 --- a/src/shared/utils/mw-get.ts +++ b/src/shared/utils/mw-get.ts @@ -23,7 +23,9 @@ export const mwGET = async (props: Props) => { const res = await fetch(url, { method: 'GET', ...options, - cache: 'no-store', + next: { + revalidate: 43200, // 12 hours + }, }); if (!res.ok) {