From a384b5c47707980b68c9f04c00a120754244fd9d Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Fri, 5 May 2023 15:00:57 +0100 Subject: [PATCH] Temporarily remove cache for API --- api/[domain]/fursona.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/[domain]/fursona.ts b/api/[domain]/fursona.ts index 8d57613..2d3e412 100644 --- a/api/[domain]/fursona.ts +++ b/api/[domain]/fursona.ts @@ -32,7 +32,7 @@ export default async (request: NextRequest) => { return new Response(JSON.stringify(data), { headers: { 'content-type': 'application/json', - 'cache-control': 'public, max-age=600, stale-while-revalidate=1200', + // 'cache-control': 'public, max-age=600, stale-while-revalidate=1200', }, }); -}; \ No newline at end of file +};