We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bd319a commit bbdda87Copy full SHA for bbdda87
src/app/student/exhibitors/[exhibitor]/page.tsx
@@ -64,7 +64,7 @@ export default async function ExhibitorPage({
64
65
const exhibitors = await fetchExhibitors({
66
year,
67
- next: { revalidate: 3600 * 24 * 6 /* 6 days */ }
+ next: { revalidate: 3600 / 2 /* 30 min */ }
68
})
69
const exhibitor = exhibitors.find(x => x.id.toString() === params.exhibitor)
70
src/app/student/map/page.tsx
@@ -23,7 +23,7 @@ export default async function Page() {
23
24
25
year: 2024,
26
+ next: { revalidate: 3600 / 3 /* 20 min */ }
27
28
29
const exhibitorsByID = new Map(exhibitors.map(e => [e.id, e]))
0 commit comments