Skip to content

Commit cfb9b2c

Browse files
committed
Upgrade to Next.js 14 and --turbo.
1 parent 034f303 commit cfb9b2c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

app/[id]/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Link from 'next/link';
33
import { GitHubIcon, LinkIcon } from '../icons';
44
import Explanation from '../explanation';
55

6-
export default async function IssueLayout({
6+
export default function IssueLayout({
77
children,
88
params,
99
}: {

app/layout.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import '../styles/globals.css';
22

33
export const metadata = {
4-
title: 'On-Demand Incremental Static Regeneration with Next.js 12.1',
4+
title: 'On-Demand Incremental Static Regeneration with Next.js',
55
};
6-
export default async function RootLayout({
6+
7+
export default function RootLayout({
78
children,
89
}: {
910
children: React.ReactNode;

bun.lockb

0 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"scripts": {
4-
"dev": "next dev",
4+
"dev": "next dev --turbo",
55
"build": "next build",
66
"start": "next start",
77
"lint": "next lint"

0 commit comments

Comments
 (0)