mirror of
https://github.com/WuKongIM/WuKongIMDocs
synced 2025-06-03 07:42:48 +00:00
28 lines
496 B
TypeScript
28 lines
496 B
TypeScript
import { DefaultTheme } from "vitepress/types/default-theme";
|
|
|
|
export const navbar: DefaultTheme.NavItem[] = [
|
|
{
|
|
text: " 指南",
|
|
link: "/guide/guide",
|
|
activeMatch: "^/guide",
|
|
},
|
|
{
|
|
text: "API文档",
|
|
link: "/api/",
|
|
activeMatch: "^/api",
|
|
},
|
|
{
|
|
text: "SDK文档",
|
|
link: "/sdk/",
|
|
activeMatch: "^/sdk",
|
|
},
|
|
{
|
|
text: "相关链接",
|
|
activeMatch: "^/im",
|
|
items: [
|
|
{ text: "Go", link: "https://pkg.go.dev/" },
|
|
{ text: "Node", link: "https://nodejs.org/" },
|
|
],
|
|
},
|
|
];
|