Files
zerobyte/apps/docs/.source/server.ts
Nico 5b728b8144 chore: move docs to monorepo apps (#801)
* chore: move docs to monorepo apps

* chore(docs): bump vite
2026-04-16 19:03:00 +02:00

24 lines
682 B
TypeScript

// @ts-nocheck
/// <reference types="vite/client" />
import { server } from 'fumadocs-mdx/runtime/server';
import type * as Config from '../source.config';
const create = server<typeof Config, import("fumadocs-mdx/runtime/types").InternalTypeConfig & {
DocData: {
}
}>({"doc":{"passthroughs":["extractedReferences"]}});
export const docs = await create.docs("docs", "content/docs", import.meta.glob(["./**/*.{json,yaml}"], {
"base": "./../content/docs",
"query": {
"collection": "docs"
},
"import": "default",
"eager": true
}), import.meta.glob(["./**/*.{mdx,md}"], {
"base": "./../content/docs",
"query": {
"collection": "docs"
},
"eager": true
}));