From dbb468b8cc281bf0c40d88c2deda19e23cb4b905 Mon Sep 17 00:00:00 2001 From: Nathan Booker Date: Fri, 12 Dec 2025 14:42:15 -0600 Subject: [PATCH] chore: set runtime to nodejs in middleware configuration --- core/middleware.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/middleware.ts b/core/middleware.ts index c068579f37..0336e5e651 100644 --- a/core/middleware.ts +++ b/core/middleware.ts @@ -29,4 +29,5 @@ export const config = { */ '/((?!api|admin|_next/static|_next/image|_vercel|favicon.ico|xmlsitemap.php|sitemap.xml|robots.txt).*)', ], + runtime: 'nodejs', };