astro-accelerator-utils 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/v1/accelerator.mjs +2 -2
- package/package.json +1 -1
package/lib/v1/accelerator.mjs
CHANGED
|
@@ -27,11 +27,11 @@ export class Accelerator {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
get cache() {
|
|
30
|
-
return new Cache(this.
|
|
30
|
+
return new Cache(this.cacheMaxAge);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
get dateFormatter() {
|
|
34
|
-
return new DateFormatter(this.
|
|
34
|
+
return new DateFormatter(this.dateOptions)
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
get markdown() {
|