From 36138478f84a678c5d63e93c814710b4dcd112e6 Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 18 May 2025 22:40:56 +0200 Subject: [PATCH] config: add Next.js configuration with standalone output and server actions --- myfavstuff/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/myfavstuff/next.config.js b/myfavstuff/next.config.js index a3e47d1..3a81f8b 100644 --- a/myfavstuff/next.config.js +++ b/myfavstuff/next.config.js @@ -6,6 +6,11 @@ const nextConfig = { images: { // domains: ['example.com'], // Add your image domains here if needed }, + + serverActions: { + bodySizeLimit: '10mb', // Or your desired limit, e.g., '5mb', '20mb' + }, + // Add any other configurations needed reactStrictMode: true,