forked from stack-auth/stack-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource.ts
More file actions
40 lines (35 loc) · 910 Bytes
/
source.ts
File metadata and controls
40 lines (35 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { api, docs } from '@/.source';
import { loader } from 'fumadocs-core/source';
import { attachFile } from 'fumadocs-openapi/server';
import { icons } from 'lucide-react';
import { createElement } from 'react';
// Helper function to create icon resolver
function createIconResolver() {
return function icon(iconName?: string) {
if (!iconName) {
return;
}
if (iconName in icons) {
return createElement(icons[iconName as keyof typeof icons]);
}
return;
};
}
// Main docs source for /docs routes - includes all root sections
export const source = loader({
baseUrl: '/docs',
source: docs.toFumadocsSource(),
pageTree: {
attachFile,
},
icon: createIconResolver(),
});
// API source for /api routes
export const apiSource = loader({
baseUrl: '/api',
source: api.toFumadocsSource(),
pageTree: {
attachFile,
},
icon: createIconResolver(),
});