diff --git a/src/beth/cache.ts b/src/beth/cache.ts index 758c228..2501746 100644 --- a/src/beth/cache.ts +++ b/src/beth/cache.ts @@ -170,7 +170,7 @@ export function persistedCache Promise>( key: string, options?: CacheOptions ): T { - const persist = options?.persist ?? "memory"; + const persist = options?.persist ?? "json"; const revalidate = options?.revalidate ?? Infinity; const tags = options?.tags ?? [];