From 1fb773ee33942ecdf7f9ee8da5bf8d479de953fa Mon Sep 17 00:00:00 2001 From: JOYCEQL <1449239013@qq.com> Date: Sat, 14 Feb 2026 22:52:16 +0800 Subject: [PATCH] chore: set public layout runtime to edge --- src/app/(public)/[locale]/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/(public)/[locale]/layout.tsx b/src/app/(public)/[locale]/layout.tsx index 5515fa6..d02be06 100644 --- a/src/app/(public)/[locale]/layout.tsx +++ b/src/app/(public)/[locale]/layout.tsx @@ -11,6 +11,8 @@ import Document from "@/components/Document"; import { locales } from "@/i18n/config"; import { Providers } from "@/app/providers"; +export const runtime = "edge"; + type Props = { children: ReactNode; params: Promise<{ locale: string }>;