diff options
Diffstat (limited to 'src/app/anime/recent/page.jsx')
| -rw-r--r-- | src/app/anime/recent/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 38aaeb0..25b0182 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -42,7 +42,7 @@ export default async function Releases() { async function fetchRecentEpisodes() {
const res = await fetch(
"https://consumet-jade.vercel.app/anime/gogoanime/recent-episodes",
- { next: { revalidate: 86400 } }
+ { next: { revalidate: 21600 } }
);
const data = res.json();
return data;
|