Skip to content
页面导航

Vitepress Problem

目录显示等级修改

参考链接:VitePress - 常用能力 | @sugarat/theme

  • Type: number | [number, number] | 'deep' | false
  • Default: 2

设置文章自动生成的目录,和 config.themeConfig.outline 表现一样,文章里单独设置的优先级更高。

js
---
# 取二三级标题生成目录
outline: [2,3]
---

设置标签页图标

参考链接:Vuepress 设置 favicon.ico 图标

config.js 中添加

js
head: [
    [
        'link', // 设置 favicon.ico,注意图片放在 public 文件夹下
        {
            rel: 'icon',
            href: 'brandon.png'
        }
    ]
],

Released under the MIT License.