From 43a04567bc205e240e3b875a63255c7c6cdfe47b Mon Sep 17 00:00:00 2001 From: Forge Date: Wed, 25 Mar 2026 08:32:30 +0800 Subject: [PATCH] chore: add standalone output for Docker/Coolify build --- next.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..e25a6a2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: 'standalone', +}; export default nextConfig;