From fc8ecb6b0dc945cc26b5193e651b6266504e5d64 Mon Sep 17 00:00:00 2001 From: imnyang Date: Thu, 23 Oct 2025 20:35:21 +0900 Subject: [PATCH] chore(next): set output to 'standalone' in next.config.ts --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index becdfe4..ec1b0de 100644 --- a/next.config.ts +++ b/next.config.ts @@ -7,6 +7,7 @@ const nextConfig: NextConfig = { turbopack: { root: path.join(__dirname, '.'), }, + output: 'standalone', }; export default nextConfig;