From 1c8b57b5713d30416746392fb95067cb8a10cb28 Mon Sep 17 00:00:00 2001 From: zv Date: Mon, 1 Jun 2026 19:40:27 +0200 Subject: [PATCH] chore: allow local network dev origin --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index 2f6491c..9cce59a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,6 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + allowedDevOrigins: ["192.168.0.174"], reactStrictMode: true, };