mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-14 02:50:58 +08:00
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
/**
|
|
* Shared layout configurations
|
|
*/
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
githubUrl: "https://github.com/nagisa77/OpenIsle",
|
|
nav: {
|
|
title: "OpenIsle Docs",
|
|
url: "/",
|
|
},
|
|
searchToggle: {
|
|
enabled: false,
|
|
},
|
|
// see https://fumadocs.dev/docs/ui/navigation/links
|
|
links: [],
|
|
};
|
|
}
|