7 lines
220 B
TypeScript
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 });
|
|
}
|