mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-07 17:05:34 +02:00
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import { defineDocs, defineConfig } from "fumadocs-mdx/config";
|
|
import { remarkMermaid } from "@theguild/remark-mermaid";
|
|
|
|
export const docs = defineDocs({
|
|
dir: "content/docs",
|
|
});
|
|
|
|
export default defineConfig({
|
|
mdxOptions: {
|
|
remarkPlugins: [remarkMermaid],
|
|
},
|
|
lastModifiedTime: "git",
|
|
});
|