zerobyte/docs/.source/browser.ts
Nicolas Meienberger 48c2b5570b
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
2026-04-15 20:22:08 +02:00

19 lines
No EOL
521 B
TypeScript

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