Initial push of Plunk Next
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import {loader} from 'fumadocs-core/source';
|
||||
import {icons} from 'lucide-react';
|
||||
import {createElement} from 'react';
|
||||
|
||||
import {docs} from '@/.source';
|
||||
|
||||
// See https://fumadocs.vercel.app/docs/headless/source-api for more info
|
||||
export const source = loader({
|
||||
// it assigns a URL to your pages
|
||||
baseUrl: '/',
|
||||
source: docs.toFumadocsSource(),
|
||||
icon(icon) {
|
||||
if (!icon) {
|
||||
// You may set a default icon
|
||||
return;
|
||||
}
|
||||
if (icon in icons) return createElement(icons[icon as keyof typeof icons]);
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user