Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@
"onboard-new-team-members",
"global-settings",
"security",
"device-management",
"---MCP Server---",
"mcp-catalog",
"mcp-installation",
"mcp-categories",
"mcp-admin-schema-workflow",
"---MCP Server Configuration---",
"mcp-configuration",
"mcp-team-installation",
"mcp-user-configuration",
"---Administration---",
"auth",
"github-application",
Expand Down
12 changes: 6 additions & 6 deletions lib/source.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// The .source alias will be generated by 'fumadocs-mdx' postinstall script
// or when you run `next dev`.
// If TypeScript complains about '@/.source', you might need to run `npm run postinstall`
// or `npm run dev` once to generate it.
import { docs } from '../.source/index';
import { docs } from '../.source';
import { loader } from 'fumadocs-core/source';
import { icons } from 'lucide-react';
import { createElement } from 'react';
Expand All @@ -28,7 +24,11 @@ function createIconHandler() {
}

// Filter docs into separate sections
const allDocs = docs.docs;
type Doc = (typeof docs.docs)[number];
const allDocs = docs.docs.map((doc: Doc) => ({
...doc,
title: doc.sidebar ?? doc.title,
}));
const allMeta = docs.meta;

// Main docs (include all files for complete control via meta.json)
Expand Down
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
27 changes: 0 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading