aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/recent
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-11 02:45:11 +0530
committerreal-zephex <[email protected]>2024-04-11 02:45:11 +0530
commit6efd15397fd8ed5d3520494e2450a9b15b1cf42f (patch)
treedf63a9b5f7d11635068c94c6f01b059a1fa3e8ee /src/app/anime/recent
parenttried to fix auto resizing of the video player on quality change. (diff)
downloaddramalama-6efd15397fd8ed5d3520494e2450a9b15b1cf42f.tar.xz
dramalama-6efd15397fd8ed5d3520494e2450a9b15b1cf42f.zip
tried to leverage caching of next js: trending and recent animes info are now cached along with all the animes when you search for one
Diffstat (limited to 'src/app/anime/recent')
-rw-r--r--src/app/anime/recent/page.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx
index b197899..645df11 100644
--- a/src/app/anime/recent/page.jsx
+++ b/src/app/anime/recent/page.jsx
@@ -1,9 +1,11 @@
import Image from "next/image";
import Link from "next/link";
import styles from "./recent.module.css";
+import { preFetchAnimeInfo } from "../videoLinkfetcher";
export default async function Releases() {
const data = await fetchRecentEpisodes();
+ preFetchAnimeInfo(data);
return (
<div className={styles.RecentContainer}>
@@ -21,7 +23,7 @@ export default async function Releases() {
>
<div className={styles.RecentEntries}>
<Image
- src={item.image}
+ src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.RecentImage}
width={150}
height={230}