cache-config.md 1.2 KB


title: "CacheConfig" isDefaultIndex: false

generated: true

import MemberInfo from '@site/src/components/MemberInfo'; import GenerationInfo from '@site/src/components/GenerationInfo'; import MemberDescription from '@site/src/components/MemberDescription';

CacheConfig

A configuration option for the Cache-Control header in the AssetServerPlugin asset response.

type CacheConfig = {
    maxAge: number;
    restriction?: 'public' | 'private';
}
### maxAge The max-age=N response directive indicates that the response remains fresh until N seconds after the response is generated. ### restriction The `private` response directive indicates that the response can be stored only in a private cache (e.g. local caches in browsers). The `public` response directive indicates that the response can be stored in a shared cache.