mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { NextResponse } from "next/server";
|
|
import { buildSpec } from "@/lib/api-v1/openapi/spec";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export function GET() {
|
|
return NextResponse.json(buildSpec());
|
|
}
|