From 134e2f28b02a6f5e2b3d9b7e577204c3fedf444f Mon Sep 17 00:00:00 2001 From: Snowykami Date: Thu, 14 Aug 2025 00:24:52 +0800 Subject: [PATCH] feat: update next.config.ts to set output to standalone --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..aadb3eb 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,6 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + output: "standalone" /* config options here */ };