mirror of
https://github.com/dathere/ckanaction.git
synced 2025-11-09 14:19:49 +00:00
10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
import { generateFiles } from 'fumadocs-openapi';
|
|
import { openapi } from '@/lib/openapi';
|
|
|
|
void generateFiles({
|
|
input: openapi,
|
|
output: './content/docs',
|
|
// we recommend to enable it
|
|
// make sure your endpoint description doesn't break MDX syntax.
|
|
includeDescription: true,
|
|
});
|