From 3f79dc7c9cee53073a9dcec8d09d25bbf521ee62 Mon Sep 17 00:00:00 2001 From: nBiqoz Date: Sun, 5 Oct 2025 16:54:07 +0200 Subject: [PATCH] first commit --- next.config.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 4483144..66eefea 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,7 +2,14 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ - allowedDevOrigins: ['10.8.0.2', '*.local'], + allowedDevOrigins: [ + "10.8.0.2", + "*.local", + "dashboard.cercle-gpt.com", + "*.cercle-gpt.com", + "localhost:3000", + "127.0.0.1:3000", + ], }; export default nextConfig;