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;