From 2085ff22c5c199de0a8f31e265c4ad5bdf5926fc Mon Sep 17 00:00:00 2001 From: Lumina Date: Wed, 24 Dec 2025 02:15:53 +0100 Subject: [PATCH] fix: remove standalone output mode for dev server compatibility --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 3f5a173..419ac82 100644 --- a/next.config.js +++ b/next.config.js @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - output: 'standalone', + // Note: 'output: standalone' is set during Docker build, not in dev mode experimental: { serverActions: { bodySizeLimit: '2mb',