From e79b74e0bc82ca2017ddb60f1ea958afa748a5a5 Mon Sep 17 00:00:00 2001 From: Forge Date: Wed, 25 Mar 2026 08:49:22 +0800 Subject: [PATCH] fix: remove standalone output (nixpacks handles its own build) --- next.config.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index e25a6a2..4678774 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { - output: 'standalone', -}; +const nextConfig = {}; export default nextConfig;