From 2b2ec4033d43c689f6e5d7de4066136773202579 Mon Sep 17 00:00:00 2001 From: Saso Jermancic Date: Fri, 15 May 2026 17:16:31 +0200 Subject: [PATCH] DASH-3239 feat(Outerbase): Increase body size limit on next.js for outerbase to 10mb --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index 8edd8f9a..4fb57279 100644 --- a/next.config.js +++ b/next.config.js @@ -5,6 +5,11 @@ const pkg = require("./package.json"); /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", + experimental: { + serverActions: { + bodySizeLimit: "10mb", + }, + }, reactStrictMode: false, pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"], env: {