🚨 Announcing Vendure v2 Beta

CacheConfig

CacheConfig

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

Signature

type CacheConfig = {
  maxAge: number;
  restriction?: 'public' | 'private';
}

Members

maxAge

property
type:
number
The max-age=N response directive indicates that the response remains fresh until N seconds after the response is generated.

restriction

property
type:
'public' | 'private'
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.