From bfc87ae0a938f0de348d4e24620c9f09e9409966 Mon Sep 17 00:00:00 2001 From: Yannick Le Duc Date: Wed, 27 Aug 2025 09:06:58 +0200 Subject: [PATCH] =?UTF-8?q?enl=C3=A8ve=20allowedDevOrigins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.ts b/next.config.ts index 25b857f..e9ffa30 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,9 +2,6 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ - experimental: { - allowedDevOrigins: ['localhost', '127.0.0.1', '192.168.1.20', '192.168.1.0/24'] - } }; export default nextConfig;