en.ts 517 B

123456789101112131415161718192021222324
  1. import type { SidebarOptions } from "@vuepress/theme-default";
  2. export const sidebarEn = {
  3. "/docs/": [
  4. {
  5. text: "Introduction",
  6. link: "/docs/README.md",
  7. },
  8. {
  9. text: "Routes",
  10. link: "/docs/routes/README.md",
  11. children: [
  12. "/docs/routes/README.md",
  13. "/docs/routes/search.md",
  14. "/docs/routes/translations.md",
  15. "/docs/routes/album.md",
  16. ],
  17. },
  18. {
  19. text: "Try It",
  20. link: "/docs/try-it.md",
  21. },
  22. ],
  23. } satisfies SidebarOptions;