index.js 784 B

12345678910111213141516171819202122232425262728293031
  1. const content = [
  2. {
  3. title: "开发环境",
  4. children: [
  5. ["/setup/ide/nodejs", "Node.js"],
  6. ["/setup/ide/idea", "IDEA"],
  7. ["/setup/ide/vscode", "VS Code"],
  8. ["/setup/ide/nodejs", "vue-cli"],
  9. ]
  10. },
  11. {
  12. title: "服务器配置",
  13. children: [
  14. {
  15. title: "基础配置",
  16. children: [
  17. ["/setup/server/nginx", "Nginx"],
  18. ["/setup/server/tomcat", "Tomcat"]
  19. ]
  20. },
  21. {
  22. title: "应用配置",
  23. children: [
  24. ["/setup/application/tuopu", "拓扑图配置"],
  25. ]
  26. },
  27. ]
  28. },
  29. ];
  30. module.exports = content;