From 4272d7b68715603c1e17d5580b4de3b3de1fa678 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 27 Jun 2022 16:49:41 -0500 Subject: [PATCH] Only cache list and king pages for 1 minute --- helpers/astro/request.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helpers/astro/request.js b/helpers/astro/request.js index 1a1b1fc..5c9efb9 100644 --- a/helpers/astro/request.js +++ b/helpers/astro/request.js @@ -2,6 +2,7 @@ import { getNetlifyRedirect } from '~/helpers/config-node.js' const ONE_SECOND = 1 +const ONE_MINUTE = 60 const ONE_HOUR = 60 * 60 const TWELVE_HOURS = 12 * ONE_HOUR @@ -25,12 +26,12 @@ function getMaxAgeForUrl ( Astro ) { // Top level list pages if ( topLevelListPages.has( urlPath ) ) { - return TWELVE_HOURS + return ONE_MINUTE } // Kind page if ( requestUrl.pathname.startsWith( '/kind/' ) ) { - return TWELVE_HOURS + return ONE_MINUTE } return ONE_SECOND