diff options
| author | zephex-alt <[email protected]> | 2024-04-27 00:09:17 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-27 00:09:17 +0530 |
| commit | ff8e0f22064e24f0e30b37c3e4005f6d34bf897c (patch) | |
| tree | ca7b3e93435f2164463aaa1655bf9ffb2b866051 /src/app/kdrama/components | |
| parent | trying to implement edge runtime (diff) | |
| parent | edge runtime didn't worked (diff) | |
| download | dramalama-ff8e0f22064e24f0e30b37c3e4005f6d34bf897c.tar.xz dramalama-ff8e0f22064e24f0e30b37c3e4005f6d34bf897c.zip | |
Merge branch 'real-zephex:master' into master
Diffstat (limited to 'src/app/kdrama/components')
| -rw-r--r-- | src/app/kdrama/components/popular.jsx | 2 | ||||
| -rw-r--r-- | src/app/kdrama/components/recent.jsx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/app/kdrama/components/popular.jsx b/src/app/kdrama/components/popular.jsx index 02d3594..335b45a 100644 --- a/src/app/kdrama/components/popular.jsx +++ b/src/app/kdrama/components/popular.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import Link from "next/link";
import { PreFetchAnimeInfo } from "./cacher";
-export const runtime = "edge";
-
export default async function PopularDramas() {
const popular = await getPopular();
PreFetchAnimeInfo(popular);
diff --git a/src/app/kdrama/components/recent.jsx b/src/app/kdrama/components/recent.jsx index aa94b7c..e4cdb69 100644 --- a/src/app/kdrama/components/recent.jsx +++ b/src/app/kdrama/components/recent.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import Link from "next/link";
import { PreFetchAnimeInfo } from "./cacher";
-export const runtime = 'edge';
-
export default async function RecentDramas() {
const popular = await getPopular();
PreFetchAnimeInfo(popular);
|