diff options
| author | real-zephex <[email protected]> | 2024-04-27 00:06:25 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-27 00:06:25 +0530 |
| commit | 7c46239179d660fe64c039f2800361db2b67acb4 (patch) | |
| tree | 279ba3eb42b59e3a005b59078eb2a2859eb5529a /src/app | |
| parent | minor ui fix (diff) | |
| download | dramalama-7c46239179d660fe64c039f2800361db2b67acb4.tar.xz dramalama-7c46239179d660fe64c039f2800361db2b67acb4.zip | |
edge runtime didn't worked
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/kdrama/[id]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/kdrama/components/popular.jsx | 2 | ||||
| -rw-r--r-- | src/app/kdrama/components/recent.jsx | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index f6926c2..69a42c2 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import EpisodesButtons from "./buttons";
import { PreFetchVideoLinks } from "../components/cacher";
-export const runtime = "edge";
-
export default async function DramaInfo({ params }) {
const id = decodeURIComponent(params.id);
const info = await getDramaInfo(id);
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);
|