diff --git a/apps/web/src/app/api/health/route.ts b/apps/web/src/app/api/health/route.ts index 4a25df5..09fefc6 100644 --- a/apps/web/src/app/api/health/route.ts +++ b/apps/web/src/app/api/health/route.ts @@ -2,6 +2,7 @@ import { NextResponse } from 'next/server'; export const runtime = 'nodejs'; export const dynamic = 'force-dynamic'; +export const maxDuration = 60; /** * GET /api/health diff --git a/apps/web/vercel.json b/apps/web/vercel.json index 4620077..c03e0c3 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -1,6 +1,6 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", - "buildCommand": "cd ../.. && turbo build --filter=@tpmjs/web", + "buildCommand": "cd ../.. && turbo build --filter=@tpmjs/web -- --webpack", "installCommand": "pnpm install", "functions": { "app/api/**/*.ts": {