From bed490d79a43f36e3dd7feb06aeb8d4e70374845 Mon Sep 17 00:00:00 2001 From: Linus Flood Date: Thu, 27 Mar 2025 12:31:28 +0000 Subject: [PATCH] Merged in fix/sitemap-function (pull request #1654) feat(sitemap): change scheduled time * feat(sitemap): change scheduled time Approved-by: Erik Tiekstra --- apps/scandic-web/netlify/functions/sitemap.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scandic-web/netlify/functions/sitemap.mts b/apps/scandic-web/netlify/functions/sitemap.mts index 7c1abe760..01fa13e56 100644 --- a/apps/scandic-web/netlify/functions/sitemap.mts +++ b/apps/scandic-web/netlify/functions/sitemap.mts @@ -24,5 +24,5 @@ export default async (request: Request, _context: Context) => { } export const config: Config = { - schedule: "@daily", + schedule: "0 2/12 * * *", // every 12 hours, start at 02.00 }