sidebar.en.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export default {
  2. '/en/guide/': [
  3. {
  4. text: 'Basic Build Guides',
  5. items: [
  6. {text: 'Guide', link: '/en/guide/'},
  7. {text: 'Build (Local)', link: '/en/guide/manual-build'},
  8. {text: 'Build (CI)', link: '/en/guide/action-build'},
  9. {text: 'Supported Extensions', link: '/en/guide/extensions'},
  10. {text: 'Extension Notes', link: '/en/guide/extension-notes'},
  11. {text: 'Build Command Generator', link: '/en/guide/cli-generator'},
  12. {text: 'Environment Variables', link: '/en/guide/env-vars', collapsed: true,},
  13. {text: 'Dependency Table', link: '/en/guide/deps-map'},
  14. ]
  15. },
  16. {
  17. text: 'Extended Build Guides',
  18. items: [
  19. {text: 'Troubleshooting', link: '/en/guide/troubleshooting'},
  20. {text: 'Build on Windows', link: '/en/guide/build-on-windows'},
  21. {text: 'Build with GNU libc', link: '/en/guide/build-with-glibc'},
  22. ],
  23. }
  24. ],
  25. '/en/develop/': [
  26. {
  27. text: 'Development',
  28. items: [
  29. {text: 'Get Started', link: '/en/develop/'},
  30. {text: 'Project Structure', link: '/en/develop/structure'},
  31. {text: 'PHP Source Modification', link: '/en/develop/php-src-changes'},
  32. ],
  33. },
  34. {
  35. text: 'Module',
  36. items: [
  37. {text: 'Doctor ', link: '/en/develop/doctor-module'},
  38. {text: 'Source', link: '/en/develop/source-module'},
  39. ]
  40. },
  41. {
  42. text: 'Extra',
  43. items: [
  44. {text: 'Compilation Tools', link: '/en/develop/system-build-tools'},
  45. ]
  46. }
  47. ],
  48. '/en/contributing/': [
  49. {
  50. text: 'Contributing',
  51. items: [
  52. {text: 'Contributing', link: '/en/contributing/'},
  53. ],
  54. }
  55. ],
  56. };