docs: upgrade to tailwind v4, react 19, fuma docs 15 (#1735)

This commit is contained in:
Bereket Engida
2025-03-08 19:33:31 +03:00
committed by GitHub
parent 3ae3c830a0
commit b5f638ca45
93 changed files with 14887 additions and 20735 deletions

13
docs/lib/source.ts Normal file
View File

@@ -0,0 +1,13 @@
import { changelogCollection, docs } 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),
});