We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957bd6a commit 53bc443Copy full SHA for 53bc443
2 files changed
package.json
@@ -51,15 +51,15 @@
51
"eslint-config-prettier": "^9.1.0",
52
"eslint-plugin-prettier": "^5.1.3",
53
"eslint-plugin-simple-import-sort": "^12.1.0",
54
- "next": "^15.3.5",
+ "next": "^16",
55
"prettier": "^3.3.2",
56
"react": "^19.1.0",
57
"react-dom": "^19.1.0",
58
"tailwindcss": "^3.4.4",
59
"typescript": "^5.5.2"
60
},
61
"peerDependencies": {
62
- "next": "^15.3.5 || ^16",
63
64
"react-dom": "^19.1.0"
65
src/zebra/revalidate.ts
@@ -27,7 +27,7 @@ const revalidate = async (req: Request) => {
27
28
console.info('/api/revalidate', 'Revalidating document cache');
29
30
- revalidateTag('document');
+ revalidateTag('document', 'max');
31
32
return Response.json({ revalidated: true });
33
};
0 commit comments