diff --git a/app/admin/configuration/export.json/route.ts b/app/admin/configuration/export.json/route.ts new file mode 100644 index 00000000..b6aa32d0 --- /dev/null +++ b/app/admin/configuration/export.json/route.ts @@ -0,0 +1,5 @@ +import { APP_CONFIGURATION } from '@/app/config'; + +export async function GET() { + return Response.json(APP_CONFIGURATION); +};