config.ts 898 B

123456789101112131415161718192021222324252627282930313233343536
  1. import { defineConfig } from "vitepress";
  2. export default defineConfig({
  3. title: "advich-web技术文档",
  4. description: "advich-web技术文档",
  5. themeConfig: {
  6. nav: [],
  7. sidebar: {
  8. "/": [
  9. {
  10. text: "",
  11. items: [
  12. {
  13. text: "npm私服",
  14. link: "/npm",
  15. },
  16. {
  17. text: "大屏案例(只含布局)",
  18. link: "/dashboard",
  19. items: [
  20. {
  21. text: "跨境电商运营数据可视化看板",
  22. link: "/dashboard/跨境电商运营数据可视化看板",
  23. },
  24. {
  25. text: "网络系统数据监控平台",
  26. link: "/dashboard/网络系统数据监控平台",
  27. },
  28. ],
  29. },
  30. ],
  31. },
  32. ],
  33. },
  34. },
  35. });