mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 22:09:30 -04:00
* docs: init project docs: design content header sticky docs: content docs: update starting guide docs: corrections docs: oidc, sso & more feat: landing page style: card design style: colors style: zerobyte logo style: corner content style: docs cards ci(docs): auto deploy to cloudflare docs: 3-2-1 strategy * fix: anchor links * style: refactor landing hero * feat: og * chore: fix ci * ci: build docs before publishing
24 lines
682 B
TypeScript
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
|
|
})); |