diff --git a/app/api/v1/docs/route.ts b/app/api/v1/docs/route.ts new file mode 100644 index 00000000..cbafa226 --- /dev/null +++ b/app/api/v1/docs/route.ts @@ -0,0 +1,43 @@ +export const dynamic = "force-dynamic"; + +const html = ` + + + Portabase API Docs + + + + + + +
+ + + + +`; + +export function GET() { + return new Response(html, { + headers: { "Content-Type": "text/html; charset=utf-8" }, + }); +}