mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
25 lines
639 B
TypeScript
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()],
|
|
},
|
|
},
|
|
});
|