sveltekit-enhance
    Preparing search index...

    Type Alias CacheDirective

    CacheDirective:
        | "no-store"
        | "no-cache"
        | "no-cache, no-store, must-revalidate"
        | `public, max-age=${number}`
        | `private, max-age=${number}`
        | `public, max-age=${number}, stale-while-revalidate=${number}`
        | string & {}