From e7e1ffab8b0e2e0c2fb829b2ac80c7898d82c023 Mon Sep 17 00:00:00 2001 From: daniil Date: Wed, 22 Apr 2026 10:13:32 +0000 Subject: [PATCH] fix: add force-dynamic to ha route --- app/api/ha/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/ha/route.ts b/app/api/ha/route.ts index 927a4d7..d9363e7 100644 --- a/app/api/ha/route.ts +++ b/app/api/ha/route.ts @@ -1,3 +1,4 @@ +export const dynamic = 'force-dynamic'; import { NextRequest, NextResponse } from "next/server"; const HA_URL = process.env.HA_URL || "http://192.168.31.110:8123";