diff options
author | Sam Light <samlight1994@gmail.com> | 2024-06-15 23:03:44 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2024-06-15 23:03:44 +0100 |
commit | 2cc8c1a8ea904ec2de857ede865a7bccc0000de4 (patch) | |
tree | b8613eff0d5c55920252898fd89d287a8c57011c /config | |
parent | f07af8db3b58bafb840ddcbc23cda5e6644feaff (diff) |
Implemented everything
Diffstat (limited to 'config')
-rw-r--r-- | config/svg.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/svg.php b/config/svg.php index dc40c50..9e9c33d 100644 --- a/config/svg.php +++ b/config/svg.php @@ -1,12 +1,14 @@ <?php return [ + 'default_collection' => 'default', 'svg_route' => 'svg/{collection}.svg', + 'cache_store' => env('SVG_CACHE_DRIVER', config('cache.default')), 'collections' => [ 'default' => [ - 'paths' => []. + 'paths' => [], ], ], |