Rust based release manager for JS/TS monorepos, heavily inspired by Vite+ ❤️
publish changelog rust release bun pnpm changeset version bump node
0

Configure Feed

Select the types of activity you want to include in your feed.

oxrls / apps / docs / source.config.ts
527 B 23 lines
1import { defineConfig, defineDocs } from 'fumadocs-mdx/config' 2import { metaSchema, pageSchema } from 'fumadocs-core/source/schema' 3 4// You can customize Zod schemas for frontmatter and `meta.json` here 5// see https://fumadocs.dev/docs/mdx/collections 6export const docs = defineDocs({ 7 dir: 'content/docs', 8 docs: { 9 schema: pageSchema, 10 postprocess: { 11 includeProcessedMarkdown: true, 12 }, 13 }, 14 meta: { 15 schema: metaSchema, 16 }, 17}) 18 19export default defineConfig({ 20 mdxOptions: { 21 // MDX options 22 }, 23})