mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02:00
- Updated various files to ensure consistent code formatting, including adjusting indentation and spacing. - Refactored components and utility functions for better readability and maintainability. - Removed unnecessary newlines and ensured consistent use of single quotes for strings across the codebase.
18 lines
441 B
TypeScript
18 lines
441 B
TypeScript
import { docs, meta } from "@/.source";
|
|
import { loader } from "fumadocs-core/source";
|
|
import { createMDXSource } from "fumadocs-mdx";
|
|
import { createOpenAPI } from "fumadocs-openapi/server";
|
|
import { attachFile } from "fumadocs-openapi/server";
|
|
|
|
export const source = loader({
|
|
baseUrl: "/docs",
|
|
source: createMDXSource(docs, meta),
|
|
// pageTree: {
|
|
// attachFile,
|
|
// },
|
|
});
|
|
|
|
export const openapi = createOpenAPI({
|
|
// options
|
|
});
|