mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
* chore: wip * wip * feat: mcp plugin * wip * chore: fix lock file * clean up * schema * docs * chore: lint * chore: release v1.2.9-beta.1 * blog * chore: lint
19 lines
464 B
TypeScript
19 lines
464 B
TypeScript
import { changelogCollection, docs, blogCollection } from "@/.source";
|
|
import { loader } from "fumadocs-core/source";
|
|
import { createMDXSource } from "fumadocs-mdx";
|
|
|
|
export const source = loader({
|
|
baseUrl: "/docs",
|
|
source: docs.toFumadocsSource(),
|
|
});
|
|
|
|
export const changelogs = loader({
|
|
baseUrl: "/changelogs",
|
|
source: createMDXSource(changelogCollection),
|
|
});
|
|
|
|
export const blogs = loader({
|
|
baseUrl: "/blogs",
|
|
source: createMDXSource(blogCollection),
|
|
});
|