Skip to content

Commit 4fc0263

Browse files
committed
Ran migrations from next 16 docs
1 parent 5253871 commit 4fc0263

File tree

4 files changed

+28
-24
lines changed

4 files changed

+28
-24
lines changed

examples/redis-minimal/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
},
1515
"dependencies": {
1616
"@fortedigital/nextjs-cache-handler": "workspace:*",
17-
"next": "^16.0.3",
18-
"react": "^19.2.0",
19-
"react-dom": "^19.2.0",
17+
"next": "16.0.3",
18+
"react": "19.2.0",
19+
"react-dom": "19.2.0",
2020
"redis": "^5.10.0"
2121
},
2222
"devDependencies": {
@@ -33,5 +33,11 @@
3333
"overrides": {
3434
"@types/react": "19.2.6",
3535
"@types/react-dom": "19.2.3"
36+
},
37+
"pnpm": {
38+
"overrides": {
39+
"@types/react": "19.2.6",
40+
"@types/react-dom": "19.2.3"
41+
}
3642
}
3743
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { revalidateTag } from "next/cache";
22

33
export async function GET() {
4-
revalidateTag("futurama");
4+
revalidateTag("futurama", "max");
55
return new Response("Cache cleared for futurama tag");
66
}

examples/redis-minimal/src/app/ppr-example/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,4 @@ export default function Page({
1818
);
1919
}
2020

21-
export const experimental_ppr = true;
22-
2321
export const revalidate = 3600;

pnpm-lock.yaml

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)