build: update dependencies and fumadocs

This commit is contained in:
rzmk 2025-12-02 21:16:06 -05:00
parent 100165ec29
commit fd5ebf4af0
144 changed files with 301 additions and 431 deletions

View file

@ -0,0 +1,10 @@
"use client";
import { defineClientConfig } from "fumadocs-openapi/ui/client";
export default defineClientConfig({
playground: {
transformAuthInputs: (inputs) => [
/* modified inputs */
],
},
});

View file

@ -0,0 +1,7 @@
import { createAPIPage } from "fumadocs-openapi/ui";
import client from "@/components/api-page.client";
import { openapi } from "@/lib/openapi";
export const APIPage = createAPIPage(openapi, {
client,
});