Cache Components (Next.js 16+) Cache Components enable Partial Prerendering (PPR) - mix static, cached, and dynamic content in a single route. Enable Cache Components This replaces the old flag. --- Three Content Types With Cache Components enabled, content falls into three categories: 1. Static (Auto-Prerendered) Synchronous code, imports, pure computations - prerendered at build time: 2. Cached ( ) Async data that doesn't need fresh fetches every request: 3. Dynamic (Suspense) Runtime data that must be fresh - wrap in Suspense: --- Directive File Level Component Level Function Level --- Cac…