From 5b13267594693a1fb1ed738235c338b275fbaf81 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 16 Jun 2024 22:28:33 +0100 Subject: Setup some config defaults for max_age --- config/svg.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/svg.php b/config/svg.php index 9e9c33d..13fd512 100644 --- a/config/svg.php +++ b/config/svg.php @@ -5,10 +5,12 @@ return [ 'default_collection' => 'default', 'svg_route' => 'svg/{collection}.svg', 'cache_store' => env('SVG_CACHE_DRIVER', config('cache.default')), + 'default_max_age' => 60 * 60 * 24 * 90, 'collections' => [ 'default' => [ 'paths' => [], + 'max_age' => 60 * 60 * 24 * 90, ], ], -- cgit v1.2.3