From ab143871b1ebe3751aed4007405a68b21021aee3 Mon Sep 17 00:00:00 2001 From: pollutri Date: Thu, 7 May 2026 17:04:30 +0200 Subject: [PATCH] fix cross origin worning --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..9839a9e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + allowedDevOrigins: ['10.210.1.225'], }; export default nextConfig;