refactor(docs): split grouped API reference pages into per-procedure MDX files

Replace the single MDX file per API tag (e.g. `admin.mdx`, `titles.mdx`) with individual files for each procedure (e.g. `admin/admin.backups.create.mdx`). Each file renders a single `<APIPage>` with one operation, includes an inline description, and carries its own `_openapi` frontmatter.

Update `generate-api-docs.ts` to emit this per-procedure structure and adjust `source.ts` and `next.config.mjs` to resolve the new paths correctly.
This commit is contained in:
2026-03-15 11:02:58 -04:00
parent 297eb6b550
commit fe81a541b4
70 changed files with 988 additions and 628 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const config = {
return [
{
source: "/docs/api",
destination: "/docs/api/account",
destination: "/docs/api/account/account.removeAvatar",
permanent: false,
},
];