From a9967f2e2bf74bc04042b9b7c045a2072d65dd41 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Wed, 24 Apr 2024 13:36:56 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Disable=20script=20concatenation?= =?UTF-8?q?=20by=20default?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/application.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/application.php b/config/application.php index 702f6e53da..56ff37fc7e 100644 --- a/config/application.php +++ b/config/application.php @@ -124,6 +124,9 @@ // Limit the number of post revisions Config::define('WP_POST_REVISIONS', env('WP_POST_REVISIONS') ?? true); +// Disable script concatenation +Config::define('CONCATENATE_SCRIPTS', false); + /** * Debugging Settings */