sidebar.en.ts 1.5 KB

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