From 230e7e4e70acc411944b2c9539e0f10ea1a9c9d1 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Thu, 14 May 2026 11:33:02 +0700 Subject: [PATCH] feat: fix maximum request payload size calculation to support 40MB --- config/livewire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/livewire.php b/config/livewire.php index 64bed86..2d3b230 100644 --- a/config/livewire.php +++ b/config/livewire.php @@ -274,7 +274,7 @@ */ 'payload' => [ - 'max_size' => 1024 * 40, // 40MB - maximum request payload size in bytes + 'max_size' => 1024 * 1024 * 40, // 40MB - maximum request payload size in bytes 'max_nesting_depth' => 50, // Maximum depth of dot-notation property paths 'max_calls' => 50, // Maximum method calls per request 'max_components' => 20, // Maximum components per batch request