17 lines
531 B
TypeScript
17 lines
531 B
TypeScript
/**
|
|
* @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
|
|
*
|
|
* Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
|
|
*/
|
|
|
|
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
|
|
|
export default defineNavbarConfig([
|
|
{ text: '首页', link: '/' },
|
|
{ text: '官网', link: 'https://福云.com' },
|
|
//{ text: '博客', link: '/blog/' },
|
|
//{ text: '标签', link: '/blog/tags/' },
|
|
//{ text: '归档', link: '/blog/archives/' },
|
|
{ text: '文档', link: '/start/'},
|
|
])
|