Caching on Netlify Default Behavior Static assets are cached automatically: - CDN: cached for 1 year, invalidated on every deploy - Browser: always revalidates ( ) - No configuration needed Dynamic responses (functions, edge functions, proxied) are not cached by default . Add cache headers explicitly. Cache-Control Headers Three headers control caching, from most to least specific: | Header | Who sees it | Use case | |---|---|---| | | Netlify CDN only (stripped before browser) | CDN-only caching | | | All CDN caches (stripped before browser) | Multi-CDN setups | | | Browser and all caches | G…