From e374fd3639ff7e78d0e73894046afd0df99e3d53 Mon Sep 17 00:00:00 2001 From: mstfyldz Date: Sun, 16 Aug 2026 17:26:38 +0300 Subject: [PATCH] fix: add output standalone to next.config.ts for Docker build --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..68a6c64 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "standalone", }; export default nextConfig;