Vercel/src/image-response/cache.ts

10 lines
281 B
TypeScript

export const getImageResponseCacheControlHeaders = (
shouldCache = process.env.NEXT_PUBLIC_VERCEL_ENV === 'production',
) => {
return {
'Cache-Control': shouldCache
? 's-maxage=3600, stale-while-revalidate=59'
: 's-maxage=1, stale-while-revalidate=59',
};
};