mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-02 13:22:11 +03:00
Integrated into release/v3.8.3 — Fumadocs MDX migration with nested routes, search API, and 50+ URL redirects
15 lines
393 B
TypeScript
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"] } }
|
|
);
|