From 5e40a68e45e18cef157909610df0a3d15de3facd Mon Sep 17 00:00:00 2001 From: vyakymenko Date: Wed, 22 Apr 2026 12:05:37 +0000 Subject: [PATCH] fix: remove invalid allowedDevOrigins (Next.js 14 compat) --- next.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/next.config.js b/next.config.js index 30423a3..767719f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { - allowedDevOrigins: ['*'], -} +const nextConfig = {} module.exports = nextConfig