From b7020b6f28e00e175e15023f44359e4d39cd07f5 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 19 Feb 2025 17:14:25 +0800 Subject: [PATCH] feat(config): enable standalone output mode for Docker builds in Next.js --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..bff4933 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;