sidebar.zh.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export default {
  2. '/zh/guide/': [
  3. {
  4. text: '构建指南',
  5. items: [
  6. {text: '指南', link: '/zh/guide/'},
  7. {text: '本地构建', link: '/zh/guide/manual-build'},
  8. {text: 'Actions 构建', link: '/zh/guide/action-build'},
  9. {text: '扩展列表', link: '/zh/guide/extensions'},
  10. {text: '扩展注意事项', link: '/zh/guide/extension-notes'},
  11. {text: '编译命令生成器', link: '/zh/guide/cli-generator'},
  12. {text: '环境变量列表', link: '/zh/guide/env-vars'},
  13. {text: '依赖关系图表', link: '/zh/guide/deps-map'},
  14. ]
  15. },
  16. {
  17. text: '扩展构建指南',
  18. items: [
  19. {text: '故障排除', link: '/zh/guide/troubleshooting'},
  20. {text: '在 Windows 上构建', link: '/zh/guide/build-on-windows'},
  21. {text: '构建 GNU libc 兼容的二进制', link: '/zh/guide/build-with-glibc'},
  22. ],
  23. }
  24. ],
  25. '/zh/develop/': [
  26. {
  27. text: '开发指南',
  28. items: [
  29. { text: '开发简介', link: '/zh/develop/' },
  30. { text: '项目结构简介', link: '/zh/develop/structure' },
  31. {text: '对 PHP 源码的修改', link: '/zh/develop/php-src-changes'},
  32. ],
  33. },
  34. {
  35. text: '模块',
  36. items: [
  37. { text: 'Doctor 环境检查工具', link: '/zh/develop/doctor-module' },
  38. { text: '资源模块', link: '/zh/develop/source-module' },
  39. ]
  40. },
  41. {
  42. text: '其他',
  43. items: [
  44. {text: '系统编译工具', link: '/zh/develop/system-build-tools'},
  45. ]
  46. }
  47. ],
  48. '/zh/contributing/': [
  49. {
  50. text: '贡献指南',
  51. items: [
  52. {text: '贡献指南', link: '/zh/contributing/'},
  53. ],
  54. }
  55. ],
  56. };