From ed353f2ee8ae4c1bf262a40dc30932aa111b1b6f Mon Sep 17 00:00:00 2001 From: David Dreher <731073+dredav@users.noreply.github.com> Date: Fri, 1 Nov 2024 05:12:38 +0100 Subject: [PATCH] docs: align `cacheMaxAgeSeconds` value with comment (#275) --- docs/content/3.guides/3.cache.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/3.guides/3.cache.md b/docs/content/3.guides/3.cache.md index 4e7620fa..44ee09c5 100644 --- a/docs/content/3.guides/3.cache.md +++ b/docs/content/3.guides/3.cache.md @@ -48,7 +48,7 @@ Alternatively, you can change the default cache time in your nuxt.config. export default defineNuxtConfig({ ogImage: { defaults: { - cacheMaxAgeSeconds: 60 * 60 * 24 * 7 * 1000 // 7 days + cacheMaxAgeSeconds: 60 * 60 * 24 * 7 // 7 days } } })