config.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. module.exports = {
  2. // theme: "reco",
  3. base:"/docs/",
  4. title: "偶游前端",
  5. themeConfig: {
  6. sidebar: [
  7. "/",
  8. {
  9. title: "项目",
  10. collapsable: false,
  11. sidebarDepth: 2,
  12. children: [
  13. {
  14. title: "坦克专题",
  15. path: "/currentProgram/tank",
  16. },
  17. {
  18. title: "hi运动教练小程序",
  19. path: "/currentProgram/hiydMini",
  20. },
  21. {
  22. title: "hi运动商城",
  23. path: "/currentProgram/hiydShop",
  24. },
  25. {
  26. title: "多玩游戏大厅",
  27. path: "/currentProgram/webGame",
  28. },
  29. ],
  30. },
  31. {
  32. title: "开发规范",
  33. collapsable: false,
  34. sidebarDepth: 2,
  35. children: [
  36. {
  37. title: "HTML规范",
  38. path: "/standard/html-guide",
  39. },
  40. {
  41. title: "css规范",
  42. path: "/standard/css-guide",
  43. },
  44. {
  45. title: "JavaScript规范",
  46. path: "/standard/javascript-guide",
  47. },
  48. {
  49. title: "目录规范",
  50. path: "/standard/directory-guide",
  51. },
  52. ],
  53. },
  54. {
  55. title: "工具类",
  56. collapsable: false,
  57. sidebarDepth: 2,
  58. children: [
  59. {
  60. title: "Fetch",
  61. path: "/utils/fetch",
  62. },
  63. ],
  64. },
  65. {
  66. title: "博客",
  67. collapsable: false,
  68. sidebarDepth: 2,
  69. // path: "/blog",
  70. },
  71. ],
  72. // nav: [
  73. // { text: "项目", link: "/currentProgram/", icon: "reco-date" },
  74. // { text: "规范", link: "/standard/", icon: "reco-date" },
  75. // { text: "工具类", link: "/utils/", icon: "reco-date" },
  76. // {
  77. // text: "主题reco",
  78. // link: "https://vuepress-theme-reco.recoluan.com/",
  79. // icon: "reco-date",
  80. // },
  81. // ],
  82. },
  83. };