Add private config export

This commit is contained in:
Sam Becker 2025-10-14 00:12:54 -05:00
parent 5c2dd092e4
commit 7296ce2e06

View File

@ -0,0 +1,5 @@
import { APP_CONFIGURATION } from '@/app/config';
export async function GET() {
return Response.json(APP_CONFIGURATION);
};