初始配置,第一篇文章

This commit is contained in:
2025-09-22 07:15:29 -04:00
parent 3029cc0fdf
commit 38d8fccaa0
11 changed files with 59 additions and 709 deletions

View File

@@ -1,18 +1,12 @@
/**
* @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: '/blog/' },
{ text: '标签', link: '/blog/tags/' },
{ text: '归档', link: '/blog/archives/' },
{
text: '笔记',
items: [{ text: '示例', link: '/notes/demo/README.md' }]
text: '首页',
link: '/',
},
{
text: '博客',
link: '/blog/',
}
])