From d1769655480fbd181ee22ea94b9038f07c2af712 Mon Sep 17 00:00:00 2001 From: Jason Mayo Date: Thu, 22 Feb 2024 16:26:08 +0000 Subject: [PATCH] Fixed: Blitz error with query strings --- config/blitz.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/config/blitz.php b/config/blitz.php index a385a68..e44e992 100644 --- a/config/blitz.php +++ b/config/blitz.php @@ -22,17 +22,13 @@ 'cachingEnabled' => true, 'cacheStorageType' => 'putyourlightson\blitz\drivers\storage\YiiCacheStorage', 'includedUriPatterns' => [ - [ - 'uriPattern' => '.*', - ] + ['uriPattern' => '.*'] ], 'excludedUriPatterns' => [ ['uriPattern' => 'dynamic/.*'] ], 'includedQueryStringParams' => [ - [ - 'uriPattern' => '.*', - ] + ['uriPattern' => '.*'] ], 'clearCacheAutomatically' => true, 'warmCacheAutomatically' => false,