From 7d72f3dbf1b0152a05c70dd3cd20a2530b530ec9 Mon Sep 17 00:00:00 2001 From: daniil Date: Wed, 22 Apr 2026 10:13:31 +0000 Subject: [PATCH] fix: add force-dynamic to weather route --- app/api/weather/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/weather/route.ts b/app/api/weather/route.ts index 9d7b556..9816944 100644 --- a/app/api/weather/route.ts +++ b/app/api/weather/route.ts @@ -1,3 +1,4 @@ +export const dynamic = 'force-dynamic'; import { NextResponse } from "next/server"; export async function GET() {