From 3af7537deccb6efc125cd0c11308e7d1fccbab04 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 25 Jun 2026 20:13:39 -0400 Subject: [PATCH] fix: add allowedDevOrigins for network dev access --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index 66b79a2..24f6e90 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,6 +1,7 @@ import type { NextConfig } from 'next'; const nextConfig: NextConfig = { + allowedDevOrigins: ['192.168.3.3'], compress: true, output: 'standalone', poweredByHeader: false,