File tree 4 files changed +0
-8
lines changed
4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ import { auth } from "@/app/api/auth/[...nextauth]/auth";
5
5
import { ErrorPage } from "@/components/ErrorPage" ;
6
6
import { isAdmin } from "@/utils/admin" ;
7
7
8
- // https://github.com/vercel/next.js/issues/72365#issuecomment-2692403955
9
- // export const maxDuration = Math.min(env.MAX_DURATION, 600);
10
8
export const maxDuration = 300 ;
11
9
12
10
export default async function AdminPage ( ) {
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ import { GmailProvider } from "@/providers/GmailProvider";
28
28
import { cookies } from "next/headers" ;
29
29
import { REPLY_ZERO_ONBOARDING_COOKIE } from "@/utils/cookies" ;
30
30
31
- // https://github.com/vercel/next.js/issues/72365#issuecomment-2692403955
32
- // export const maxDuration = Math.min(env.MAX_DURATION, 600);
33
31
export const maxDuration = 300 ;
34
32
35
33
export default async function ReplyTrackerPage ( props : {
Original file line number Diff line number Diff line change @@ -67,9 +67,6 @@ export const env = createEnv({
67
67
INTERNAL_API_KEY : z . string ( ) . optional ( ) ,
68
68
WHITELIST_FROM : z . string ( ) . optional ( ) ,
69
69
USE_BACKUP_MODEL : z . coerce . boolean ( ) . optional ( ) . default ( false ) ,
70
- // See Vercel limits here: https://vercel.com/docs/functions/configuring-functions/duration#duration-limits
71
- // Vercel Fluid Compute allows up to 800s, but other plans are capped at 300s or less
72
- MAX_DURATION : z . coerce . number ( ) . optional ( ) . default ( 800 ) ,
73
70
74
71
// license
75
72
LICENSE_1_SEAT_VARIANT_ID : z . coerce . number ( ) . optional ( ) ,
Original file line number Diff line number Diff line change 53
53
" USE_BACKUP_MODEL" ,
54
54
" WHITELIST_FROM" ,
55
55
" API_KEY_SALT" ,
56
- " MAX_DURATION" ,
57
56
" FB_CONVERSION_API_ACCESS_TOKEN" ,
58
57
" FB_PIXEL_ID" ,
59
58
You can’t perform that action at this time.
0 commit comments