this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1## Next.js Partial Prerendering 2 3This is a demo of [Next.js](https://nextjs.org) using [Partial Prerendering](https://nextjs.org/docs/app/api-reference/next-config-js/partial-prerendering). 4 5This template uses the new Next.js [App Router](https://nextjs.org/docs/app). This includes support for enhanced layouts, colocation of components, tests, and styles, component-level data fetching, and more. 6 7It also uses the experimental Partial Prerendering feature available in Next.js 14. Partial Prerendering combines ultra-quick static edge delivery with fully dynamic capabilities and we believe it has the potential to [become the default rendering model for web applications](https://vercel.com/blog/partial-prerendering-with-next-js-creating-a-new-default-rendering-model), bringing together the best of static site generation and dynamic delivery. 8 9> ⚠️ Please note that PPR is an experimental technology that is not recommended for production. You may run into some DX issues, especially on larger code bases. 10 11## How it works 12 13The index route `/` uses Partial Prerendering through: 14 151. Enabling the experimental flag in `next.config.js`. 16 17```js 18experimental: { 19 ppr: true, 20}, 21``` 22 232. Using `<Suspense />` to wrap Dynamic content.