From 1f0c8a3333c1e1bfbc4f36fe56a30112b3beb9a8 Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Wed, 27 May 2026 12:33:51 +0900 Subject: [PATCH] fix --- next.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.ts b/next.config.ts index 5504d7b..e09a385 100644 --- a/next.config.ts +++ b/next.config.ts @@ -5,4 +5,8 @@ const nextConfig: NextConfig = { reactCompiler: true, }; +if (process.env.OUTPUT === "standalone") { + nextConfig.output = "standalone"; +} + export default nextConfig;