From 4c0eee2ae99cbf33c3211f5d5e0dc7ea3b9a1b67 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Thu, 1 Aug 2024 07:28:33 -0700 Subject: [PATCH] Updated execution time --- app/[...slug]/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/[...slug]/page.tsx b/app/[...slug]/page.tsx index ba5b11a5..b124a01b 100644 --- a/app/[...slug]/page.tsx +++ b/app/[...slug]/page.tsx @@ -9,6 +9,8 @@ import {getPathFromContext, PageProps} from "@lib/drupal/utils" // https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config export const revalidate = false export const dynamic = "force-static" +// https://vercel.com/docs/functions/runtimes#max-duration +export const maxDuration = 60 const Page = async ({params}: PageProps) => { const path = getPathFromContext({params})