From d27500c5a17fc6e56ac7bd33eeb40997308f27b2 Mon Sep 17 00:00:00 2001 From: Theo Browne Date: Mon, 28 Oct 2024 09:31:32 -0700 Subject: [PATCH] docs: Fix typo in cacheLife configs in use-cache docs (#71921) ### What? Typo fix in use-cache docs ### Why? The world deserves less typos ### How? I removed a number that should not have been there Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> --- docs/02-app/02-api-reference/01-directives/use-cache.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/02-api-reference/01-directives/use-cache.mdx b/docs/02-app/02-api-reference/01-directives/use-cache.mdx index 3825ff2e13e84..443e8762e3fde 100644 --- a/docs/02-app/02-api-reference/01-directives/use-cache.mdx +++ b/docs/02-app/02-api-reference/01-directives/use-cache.mdx @@ -160,7 +160,7 @@ const nextConfig = { biweekly: { stale: 60 * 60 * 24 * 14, // 14 days revalidate: 60 * 60 * 24, // 1 day - expire: 86400 60 * 60 * 24 * 14, // 14 days + expire: 60 * 60 * 24 * 14, // 14 days }, }, },