Files
OmniRoute/.source/dynamic.ts
Mr. Meowgi ceab23803d feat(docs): migrate /docs to Fumadocs MDX with nested routes (#2614)
Integrated into release/v3.8.3 — Fumadocs MDX migration with nested routes, search API, and 50+ URL redirects
2026-05-23 04:25:16 -03:00

15 lines
393 B
TypeScript

// @ts-nocheck
import { dynamic } from "fumadocs-mdx/runtime/dynamic";
import * as Config from "../source.config";
const create = await dynamic<
typeof Config,
import("fumadocs-mdx/runtime/types").InternalTypeConfig & {
DocData: {};
}
>(
Config,
{ configPath: "source.config.ts", environment: "next", outDir: ".source" },
{ doc: { passthroughs: ["extractedReferences"] } }
);