Xaviw / vite-plugin-vitepress-auto-nav

自动生成vitepress的nav与sidebar
MIT License
17 stars 1 forks source link

目录都没了,空白了 #10

Closed elarbor closed 3 months ago

elarbor commented 4 months ago
image

使用插件后

image image
Xaviw commented 4 months ago

我没有发现问题怎么出现的,有复现的代码仓库吗

Xaviw commented 4 months ago

sidebar 的类型定义是:

export type Sidebar = SidebarItem[] | SidebarMulti

  export interface SidebarMulti {
    [path: string]: SidebarItem[] | { items: SidebarItem[]; base: string }
  }

我插件中生成的 SidebarMulti 格式的数据,是符合要求的