27 lines
823 B
TypeScript
27 lines
823 B
TypeScript
import dynamic from "next/dynamic";
|
|
import { SwaggerUI } from "swagger-ui-react";
|
|
|
|
import { SnippedGenerator, requestSnippets } from "@lib/snippets";
|
|
|
|
const SwaggerUIDynamic: SwaggerUI & { url: string } = dynamic(() => import("swagger-ui-react"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function APIDocs() {
|
|
return (
|
|
<SwaggerUIDynamic
|
|
url={process.env.NEXT_PUBLIC_SWAGGER_DOCS_URL || "https://api.cal.com/docs"}
|
|
persistAuthorization={true}
|
|
supportedSubmitMethods={["get", "post", "delete", "put", "options", "patch"]}
|
|
requestSnippetsEnabled={true}
|
|
requestSnippets={requestSnippets}
|
|
plugins={[SnippedGenerator]}
|
|
tryItOutEnabled={true}
|
|
syntaxHighlight={true}
|
|
enableCORS={false} // Doesn't seem to work either
|
|
docExpansion="list"
|
|
filter={true}
|
|
/>
|
|
);
|
|
}
|