mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
9 lines
380 B
TypeScript
9 lines
380 B
TypeScript
import { defineNavbarConfig } from "vuepress-theme-hope";
|
|
|
|
export const navbarConfig = defineNavbarConfig([
|
|
{ text: "Java面试指南", icon: "java", link: "/home.md" },
|
|
{ text: "Java优质专栏", icon: "recommend", link: "/zhuanlan/" },
|
|
{ text: "关于作者", icon: "zuozhe", link: "/about-the-author/" },
|
|
{ text: "RSS订阅", icon: "zuozhe", link: "/feed.json" },
|
|
]);
|