funktechnik-schubert-website/app/api/content/settings/route.ts

7 lines
220 B
TypeScript

import { NextResponse } from "next/server";
import { getContent } from "@/lib/content/service";
export async function GET() {
const settings = await getContent("settings");
return NextResponse.json({ settings });
}