From 4867d52b8f34c0f5d5da8d45534ccb0cef127781 Mon Sep 17 00:00:00 2001 From: StyleZhang Date: Tue, 29 Aug 2023 12:24:46 +0800 Subject: [PATCH] fix: conversations cache --- app/api/conversations/route.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/api/conversations/route.ts b/app/api/conversations/route.ts index 9a4d6d6..0dd3fe3 100644 --- a/app/api/conversations/route.ts +++ b/app/api/conversations/route.ts @@ -1,3 +1,5 @@ +export const dynamic = 'force-dynamic' + import { type NextRequest } from 'next/server' import { NextResponse } from 'next/server' import { client, getInfo, setSession } from '@/app/api/utils/common'