en.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import type { SidebarOptions } from "@vuepress/theme-default";
  2. export const sidebarEn: SidebarOptions = {
  3. "/docs/": [
  4. {
  5. text: "Getting started",
  6. link: "/docs/README.md",
  7. },
  8. {
  9. text: "Routes",
  10. children: [
  11. "/docs/routes/README.md",
  12. "/docs/routes/search.md",
  13. "/docs/routes/translations.md",
  14. "/docs/routes/album.md",
  15. ],
  16. },
  17. {
  18. text: "Try It",
  19. link: "/docs/try-it.md",
  20. },
  21. ],
  22. /*'/advanced/': [
  23. {
  24. text: 'Advanced',
  25. children: [
  26. '/advanced/architecture.md',
  27. '/advanced/plugin.md',
  28. '/advanced/theme.md',
  29. ],
  30. },
  31. {
  32. text: 'Cookbook',
  33. children: [
  34. '/advanced/cookbook/README.md',
  35. '/advanced/cookbook/usage-of-client-config.md',
  36. '/advanced/cookbook/adding-extra-pages.md',
  37. '/advanced/cookbook/making-a-theme-extendable.md',
  38. '/advanced/cookbook/passing-data-to-client-code.md',
  39. '/advanced/cookbook/markdown-and-vue-sfc.md',
  40. '/advanced/cookbook/resolving-routes.md',
  41. ],
  42. },
  43. ],
  44. '/reference/': [
  45. {
  46. text: 'Core',
  47. collapsible: true,
  48. children: [
  49. '/reference/cli.md',
  50. '/reference/config.md',
  51. '/reference/frontmatter.md',
  52. '/reference/components.md',
  53. '/reference/plugin-api.md',
  54. '/reference/theme-api.md',
  55. '/reference/client-api.md',
  56. '/reference/node-api.md',
  57. ],
  58. },
  59. {
  60. text: 'Bundlers',
  61. children: ['/reference/bundler/vite.md', '/reference/bundler/webpack.md'],
  62. },
  63. {
  64. text: 'Ecosystem',
  65. children: [
  66. {
  67. text: 'Default Theme',
  68. link: 'https://ecosystem.vuejs.press/themes/default/',
  69. },
  70. {
  71. text: 'Plugins',
  72. link: 'https://ecosystem.vuejs.press/plugins/',
  73. },
  74. ],
  75. },
  76. ],*/
  77. };