mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 15:37:25 +08:00
27 lines
484 B
TypeScript
27 lines
484 B
TypeScript
|
|
import {navbar} from "vuepress-theme-hope";
|
|
|
|
export const zhNavbarConfig = navbar([
|
|
"/",
|
|
{
|
|
text: "安装及部署",
|
|
link: "/deploy/",
|
|
prefix: "deploy/",
|
|
},
|
|
{
|
|
text: "使用及功能",
|
|
link: "/usage/",
|
|
prefix: "usage/",
|
|
},
|
|
{
|
|
text: "资源及插件",
|
|
link: "/store/",
|
|
prefix: "store/",
|
|
},
|
|
{
|
|
text: "开发及贡献",
|
|
link: "/dev/",
|
|
prefix: "dev/",
|
|
},
|
|
]);
|