diff --git a/ui/app/api/env/route.ts b/ui/app/api/env/route.ts index b60bbf6..900dcc7 100644 --- a/ui/app/api/env/route.ts +++ b/ui/app/api/env/route.ts @@ -1,7 +1,7 @@ import process from 'process'; import { NextResponse } from 'next/server'; -export async function GET(_request: Request): NextResponse { +export async function GET(_request: Request) { // Access environment variables const envVars = { 'BACKEND_API_URL': process.env.BACKEND_API_URL,