aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/top-airing
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/top-airing
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/top-airing')
-rw-r--r--src/app/anime/top-airing/page.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx
index e385629..2c4fb88 100644
--- a/src/app/anime/top-airing/page.jsx
+++ b/src/app/anime/top-airing/page.jsx
@@ -1,10 +1,11 @@
import styles from "./trending.module.css";
import Image from "next/image";
import Link from "next/link";
+import { preFetchAnimeInfo } from "../videoLinkfetcher";
export default async function Trending() {
const data = await test();
-
+ preFetchAnimeInfo(data);
return (
<div className={styles.TrendingContainer}>
<div className={styles.TrendingText}>
@@ -21,7 +22,7 @@ export default async function Trending() {
>
<div className={styles.trendingEntries}>
<Image
- src={item.image}
+ src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
width={150}
height={230}