From e6ed83462d3bcd2f68fce31433d8101c1ae353e9 Mon Sep 17 00:00:00 2001 From: Lluis Agusti Date: Wed, 26 Nov 2025 19:13:33 +0700 Subject: [PATCH] fix(frontend): update next.config.mjs to not use standalone output --- autogpt_platform/frontend/next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/next.config.mjs b/autogpt_platform/frontend/next.config.mjs index d4df72a643..d4595990a2 100644 --- a/autogpt_platform/frontend/next.config.mjs +++ b/autogpt_platform/frontend/next.config.mjs @@ -34,7 +34,8 @@ const nextConfig = { }, ], }, - output: "standalone", + // Vercel has its own deployment mechanism and doesn't need standalone mode + ...(process.env.VERCEL ? {} : { output: "standalone" }), transpilePackages: ["geist"], };