Vercel/app/admin/configuration/export.json/route.ts
2025-11-08 15:22:33 -06:00

8 lines
236 B
TypeScript

import { APP_CONFIGURATION, DEBUG_OUTPUTS_ENABLED } from '@/app/config';
export async function GET() {
return DEBUG_OUTPUTS_ENABLED
? Response.json(APP_CONFIGURATION)
: new Response('Debugging disabled', { status: 404 });
};