Skip to content

Commit 92772c6

Browse files
committed
Cleanup
1 parent fca9b13 commit 92772c6

16 files changed

+959
-2559
lines changed

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
## Next.js Partial Prerendering
22

3-
This is a demo of [Next.js](https://nextjs.org) using Partial Prerendering.
3+
This is a demo of [Next.js](https://nextjs.org) using [Partial Prerendering](https://nextjs.org/docs/app/api-reference/next-config-js/partial-prerendering).
44

55
This 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.
66

7-
It also uses the experimental Partial Prerendering feature available in Next.js 14.
7+
It also uses the experimental Partial Prerendering feature available in Next.js 14. Learn more about Partial Prerendering by re-watching the [Next.js Conf 2023 Keynote](https://www.youtube.com/watch?v=gfU1iZnjRZM&list=PLBnKlKpPeagl57K9bCw_IXShWQXePnXjY&index=2).
88

9-
You can learn more about Partial Prerendering by re-watching the [Next.js Conf 2023 Keynote](https://www.youtube.com/watch?v=gfU1iZnjRZM&list=PLBnKlKpPeagl57K9bCw_IXShWQXePnXjY&index=2), reading the [Partial Prerendering announcement](https://vercel.com/blog/partial-prerendering-with-next-js-creating-a-new-default-rendering-model?__vercel_draft=1), and by taking the [Next.js Learn chapter on Partial Prerendering](https://nextjs.org/learn/dashboard-app/partial-prerendering).
10-
11-
> ⚠️ Please note that PPR is truly an experimental technology that is not recommended for production. You may run into some DX issues, especially on larger code bases, and known issues around performance of client-side navigations.
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, and known issues around performance of client-side navigations have not yet been addressed.
1210
1311
## How it works
1412

app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Metadata } from 'next';
66
import './globals.css';
77

88
export const metadata: Metadata = {
9-
metadataBase: new URL('https://nextjs-partial-prerendering.vercel.app/'),
9+
metadataBase: new URL('https://partialprerendering.com'),
1010
title: 'Next.js Partial Prerendering',
1111
description: 'A demo of Next.js using Partial Prerendering.',
1212
openGraph: {

app/not-found.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export default function NotFound() {
55
<Boundary labels={['not-found.tsx']} color="pink">
66
<div className="text-vercel-pink space-y-4">
77
<h2 className="text-lg font-bold">Not Found</h2>
8-
98
<p className="text-sm">Could not find requested resource</p>
109
</div>
1110
</Boundary>

app/opengraph-image.png

96.6 KB
Loading

app/opengraph-image.tsx

-338
This file was deleted.

0 commit comments

Comments
 (0)