Files
Hayden Bleasel cf9ccd0076 Open Source Docs (#272)
* Scaffold Geistdocs instance

* Update biome.json

* Replace content

* Re-path docs

* Update docs package name

* Misc fixes

* Update geistdocs.tsx

* Move content to correct folder

* Start migrating custom components

* Finish migrating custom components

* Migrate existing redirects

* Remove #next suffixes from code blocks

* Migrate homepage and flags

* Remove duplicate lockfiles

* Start fixing homepage

* Replace Geist components

* Fix colors

* Improve layout

* Fix code blocks

* Fix hero

* Fix illustrations

* Fix redirect

* Fix nav links

* Patch in FrameworkSwitcher

* Bump Next.js in docs

* Delete turbo.json

* Misc fixes

* More logo fixes
2026-02-13 09:06:03 +02:00

53 lines
1.4 KiB
TypeScript

import { type InferPageType, loader } from "fumadocs-core/source";
import { lucideIconsPlugin } from "fumadocs-core/source/lucide-icons";
import { docs } from "@/.source/server";
import { basePath } from "@/geistdocs";
import { i18n } from "./i18n";
// See https://fumadocs.dev/docs/headless/source-api for more info
export const source = loader({
i18n,
baseUrl: "/docs",
source: docs.toFumadocsSource(),
plugins: [lucideIconsPlugin()],
});
export const getPageImage = (page: InferPageType<typeof source>) => {
const segments = [...page.slugs, "image.png"];
return {
segments,
url: basePath
? `${basePath}/og/${segments.join("/")}`
: `/og/${segments.join("/")}`,
};
};
export const getLLMText = async (page: InferPageType<typeof source>) => {
const processed = await page.data.getText("processed");
const { title, description, product, type, summary, prerequisites, related } =
page.data;
const frontmatter = [
"---",
`title: ${title}`,
description && `description: ${description}`,
product && `product: ${product}`,
type && `type: ${type}`,
summary && `summary: ${summary}`,
prerequisites?.length &&
`prerequisites:\n${prerequisites.map((p) => ` - ${p}`).join("\n")}`,
related?.length &&
`related:\n${related.map((r) => ` - ${r}`).join("\n")}`,
"---",
]
.filter(Boolean)
.join("\n");
return `${frontmatter}
# ${title}
${processed}`;
};