From a0d551ae666b2c4e31a2fc6026826f40dc42f8e9 Mon Sep 17 00:00:00 2001 From: corpi Date: Mon, 9 Feb 2026 15:35:21 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20next=20config=20"standalone"=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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;