fix(ci): fixed container registry name in ci, modified some routes to be dynamic to avoid nextjs telemetry

This commit is contained in:
Waleed Latif
2025-05-18 01:39:47 -07:00
parent 717e17d02a
commit ef31a2fe7b
9 changed files with 46 additions and 42 deletions

View File

@@ -4,9 +4,8 @@ import { createContext, Script } from 'vm'
import { env } from '@/lib/env'
import { createLogger } from '@/lib/logs/console-logger'
// Explicitly export allowed methods
export const dynamic = 'force-dynamic' // Disable static optimization
export const runtime = 'nodejs' // Use Node.js runtime
export const dynamic = 'force-dynamic'
export const runtime = 'nodejs'
const logger = createLogger('FunctionExecuteAPI')