You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

49 lines
1.1 KiB

import { defineSidebarConfig } from "vuepress-theme-hope";
export const en = defineSidebarConfig({
"/": [
"",
"home",
"slide",
{
icon: "creative",
text: "Guide",
collapsable: true,
prefix: "guide/",
link: "guide/",
children: ["page", "markdown", "disable", "encrypt"],
},
{
text: "Articles",
icon: "note",
prefix: "posts/",
children: [
{
text: "Articles 1-4",
icon: "note",
collapsable: true,
prefix: "article/",
children: ["article1", "article2", "article3", "article4"],
},
{
text: "Articles 5-12",
icon: "note",
children: [
{
text: "Articles 5-8",
icon: "note",
collapsable: true,
prefix: "article/",
children: ["article5", "article6", "article7", "article8"],
},
{
text: "Articles 9-12",
icon: "note",
children: ["article9", "article10", "article11", "article12"],
},
],
},
],
},
],
});