diff options
| author | real-zephex <[email protected]> | 2024-03-21 18:57:13 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-21 18:57:13 +0530 |
| commit | 27259f02d821912363548cad48da7932beb27e8c (patch) | |
| tree | dc537000fce3d217fd891836588028d9c33352bc /src | |
| parent | fix: cloudflare fix (diff) | |
| download | dramalama-27259f02d821912363548cad48da7932beb27e8c.tar.xz dramalama-27259f02d821912363548cad48da7932beb27e8c.zip | |
changes: reverted to previous commit
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/info/[id]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/video/[animeId]/page.jsx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/app/info/[id]/page.jsx b/src/app/info/[id]/page.jsx index fc56c5f..5048612 100644 --- a/src/app/info/[id]/page.jsx +++ b/src/app/info/[id]/page.jsx @@ -2,8 +2,6 @@ import "../info.css"; import Image from "next/image"; import Link from "next/link"; -export const runtime = "edge"; - export default async function AnimeInfo({ params }) { let animeID = params.id; diff --git a/src/app/video/[animeId]/page.jsx b/src/app/video/[animeId]/page.jsx index d475d72..02f6197 100644 --- a/src/app/video/[animeId]/page.jsx +++ b/src/app/video/[animeId]/page.jsx @@ -8,8 +8,6 @@ import { import "../video.css"; import { redirect } from "next/navigation"; -export const runtime = 'edge'; - export default async function Video({ params }) { const id = params.animeId; |