import type { NextConfig } from 'next'; const nextConfig: NextConfig = { cacheComponents: true, // ... }; export default nextConfig; Over the last year, we've been simplifying Next.js back to its roots: dynamic by default, with no hidden or implicit caching. This flag enables those new behaviors, and it will become a default in a future major version of Next.js. Stream, Cache, or Block Now, when a

