From 84c6d72faf5388e3b6ca5d622ecb66718bf481f0 Mon Sep 17 00:00:00 2001 From: devbeni Date: Fri, 19 Sep 2025 19:41:03 +0200 Subject: [PATCH] fix: remove experimental TurboPack configuration from next.config.ts --- next.config.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/next.config.ts b/next.config.ts index a998c89..b6d3411 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,12 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - allowedDevOrigins: ["10.20.0.188"], - experimental: { - turbo: { - // Turbopack specific configuration if needed - } - } + allowedDevOrigins: ["10.20.0.188"] }; export default nextConfig;