mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
15 lines
571 B
TypeScript
15 lines
571 B
TypeScript
import { defineNavbarConfig } from "vuepress-theme-hope";
|
|
|
|
export const navbarConfig = defineNavbarConfig([
|
|
{ text: "面试指南", icon: "java", link: "/home.md" },
|
|
{ text: "优质专栏", icon: "recommend", link: "/zhuanlan/" },
|
|
{ text: "项目精选", icon: "github", link: "/open-source-project/" },
|
|
{
|
|
text: "旧版链接",
|
|
icon: "java",
|
|
link: "https://snailclimb.gitee.io/javaguide/#/",
|
|
},
|
|
{ text: "RSS订阅", icon: "rss", link: "https://javaguide.cn/feed.json" },
|
|
{ text: "关于作者", icon: "zuozhe", link: "/about-the-author/" },
|
|
]);
|