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;