From 714af314ca31f262f87f4c1768c7c395df99747e Mon Sep 17 00:00:00 2001 From: shenlan Date: Wed, 1 Oct 2025 12:59:43 +0800 Subject: [PATCH] fix: resolve session route export conflict (#348) --- ui/homepage/app/api/auth/session/route.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/homepage/app/api/auth/session/route.ts b/ui/homepage/app/api/auth/session/route.ts index 3f7b0c7..772b159 100644 --- a/ui/homepage/app/api/auth/session/route.ts +++ b/ui/homepage/app/api/auth/session/route.ts @@ -1,8 +1,6 @@ import { cookies } from 'next/headers' import { NextRequest, NextResponse } from 'next/server' -export const dynamic = 'force-dynamic' - import { getAccountServiceBaseUrl } from '@lib/serviceConfig' const ACCOUNT_SERVICE_URL = getAccountServiceBaseUrl()