From 92280dc4359c319aaac86e9795d74477b77f09ff Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Mon, 2 Dec 2024 14:30:40 -0800 Subject: [PATCH] [backport] Update max tag items limit in docs (#73445) x-ref: https://github.com/vercel/next.js/pull/73125 --- docs/02-app/02-api-reference/04-functions/fetch.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/02-api-reference/04-functions/fetch.mdx b/docs/02-app/02-api-reference/04-functions/fetch.mdx index 281079c1685ba..8e4a088785fef 100644 --- a/docs/02-app/02-api-reference/04-functions/fetch.mdx +++ b/docs/02-app/02-api-reference/04-functions/fetch.mdx @@ -98,7 +98,7 @@ Set the cache lifetime of a resource (in seconds). fetch(`https://...`, { next: { tags: ['collection'] } }) ``` -Set the cache tags of a resource. Data can then be revalidated on-demand using [`revalidateTag`](https://nextjs.org/docs/app/api-reference/functions/revalidateTag). The max length for a custom tag is 256 characters and the max tag items is 64. +Set the cache tags of a resource. Data can then be revalidated on-demand using [`revalidateTag`](https://nextjs.org/docs/app/api-reference/functions/revalidateTag). The max length for a custom tag is 256 characters and the max tag items is 128. ## Version History