diff options
| author | zephex-alt <[email protected]> | 2024-04-26 18:56:04 +0000 |
|---|---|---|
| committer | zephex-alt <[email protected]> | 2024-04-26 18:56:04 +0000 |
| commit | adc2555489011934b209ddcd42668d1d6727db3e (patch) | |
| tree | fa5dc2f9793cf355278fd6e2bb1e0864579a8d73 /src/app/anime | |
| parent | Merge branch 'real-zephex:master' into master (diff) | |
| download | dramalama-adc2555489011934b209ddcd42668d1d6727db3e.tar.xz dramalama-adc2555489011934b209ddcd42668d1d6727db3e.zip | |
removed edge runtime
Diffstat (limited to 'src/app/anime')
| -rw-r--r-- | src/app/anime/[id]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/anime/recent/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/app/anime/[id]/page.jsx b/src/app/anime/[id]/page.jsx index 664d638..bb7640f 100644 --- a/src/app/anime/[id]/page.jsx +++ b/src/app/anime/[id]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import Button from "./buttons";
import { preFetchAnimeLinks } from "../videoLinkfetcher";
-export const runtime = "edge";
-
export default async function AnimeInfo({ params }) {
let animeID = params.id;
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 69f2a81..25b0182 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -3,8 +3,6 @@ import Link from "next/link"; import styles from "./recent.module.css";
import { preFetchAnimeInfo } from "../videoLinkfetcher";
-export const runtime = "edge";
-
export default async function Releases() {
const data = await fetchRecentEpisodes();
preFetchAnimeInfo(data);
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index 2f6232f..e406860 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import Link from "next/link";
import { preFetchAnimeInfo } from "../videoLinkfetcher";
-export const runtime = "edge";
-
export default async function Trending() {
const data = await test();
preFetchAnimeInfo(data);
|