From 7b9d1b172e164bcd4a60cd94972f6d80b942d8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tuna2134=40=E3=82=B3=E3=83=9E=E3=83=AA=E3=83=B3=E8=A6=AA?= =?UTF-8?q?=E8=A1=9B=E9=9A=8A?= Date: Mon, 28 Apr 2025 13:23:23 +0900 Subject: [PATCH] Update next.config.ts --- next.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..a4162da 100644 --- a/next.config.ts +++ b/next.config.ts @@ -4,4 +4,8 @@ const nextConfig: NextConfig = { /* config options here */ }; +if (process.env.OUTPUT === "standalone") { + nextConfig.output = "standalone"; +} + export default nextConfig;