-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php
44 lines (34 loc) · 1.08 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
declare(strict_types=1);
use Vdlp\Sitemap\Classes\Resolvers\StaticConfigResolver;
return [
/*
|--------------------------------------------------------------------------
| Cache Time
|--------------------------------------------------------------------------
|
| Configure how long the sitemap.xml data will be cached.
|
| Default = 1 hour (3600 seconds)
|
*/
'cache_time' => env('VDLP_SITEMAP_CACHE_TIME', 3600),
/*
|--------------------------------------------------------------------------
| Cache Forever
|--------------------------------------------------------------------------
|
| Cache the sitemap forever.
|
*/
'cache_forever' => env('VDLP_SITEMAP_CACHE_FOREVER', false),
/*
|--------------------------------------------------------------------------
| Config resolver
|--------------------------------------------------------------------------
|
| Configure how the sitemap config should be resolved.
|
*/
'config_resolver' => StaticConfigResolver::class,
];