mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-21 15:32:45 -04:00
19 lines
521 B
TypeScript
19 lines
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; |