Loading...
Loading...
Error: Partial Prerendering (PPR) is not enabled for this route. Add 'experimental: { ppr: true }' to your config.Partial Prerendering (PPR) is an experimental feature in Next.js 15 that allows you to combine static and dynamic content in the same route. This error occurs when you use PPR-specific features (like the 'experimental_ppr' export) without the global flag enabled.
Update your next.config.js to include the experimental ppr flag.
const nextConfig = {
experimental: {
ppr: 'incremental', // or true
},
};