From 288b5df81a88b3e291d1f8082dc057bdbc3b3e8b Mon Sep 17 00:00:00 2001 From: mstfyldz Date: Thu, 12 Mar 2026 22:56:14 +0300 Subject: [PATCH] Build: add standalone output mode to next.config.ts --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..f7b60bb 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,6 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + output: 'standalone', /* config options here */ };