mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
41 lines
725 B
TypeScript
41 lines
725 B
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export const enSidebar = sidebar({
|
|
"/en/": [
|
|
"",
|
|
{
|
|
icon: "workingDirectory",
|
|
text: "Project",
|
|
link: "project.md"
|
|
},
|
|
{
|
|
icon: "network",
|
|
text: "Localization",
|
|
link: "i18n.md"
|
|
},
|
|
{
|
|
icon: "play",
|
|
text: "Quick Start",
|
|
link: "quick-start.md"
|
|
},
|
|
{
|
|
icon: "read",
|
|
text: "Features",
|
|
prefix: "features/",
|
|
children: "structure"
|
|
},
|
|
{
|
|
icon: "advance",
|
|
text: "Advanced",
|
|
prefix: "advanced/",
|
|
children: "structure"
|
|
},
|
|
{
|
|
icon: "article",
|
|
text: "Statements",
|
|
prefix: "statements/",
|
|
children: "structure"
|
|
}
|
|
],
|
|
});
|