Files
discord.js/apps/guide/source.config.ts
2025-04-28 02:23:27 +02:00

25 lines
639 B
TypeScript

import { rehypeCodeDefaultOptions } from 'fumadocs-core/mdx-plugins';
import { defineConfig, defineDocs } from 'fumadocs-mdx/config';
import { transformerTwoslash } from 'fumadocs-twoslash';
import { createFileSystemTypesCache } from 'fumadocs-twoslash/cache-fs';
export const docs = defineDocs({
dir: 'content/docs',
});
transformerTwoslash({
typesCache: createFileSystemTypesCache(),
});
export default defineConfig({
mdxOptions: {
rehypeCodeOptions: {
themes: {
light: 'github-light',
dark: 'github-dark',
},
transformers: [...(rehypeCodeDefaultOptions.transformers ?? []), transformerTwoslash()],
},
},
});