123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- export default {
- '/en/guide/': [
- {
- text: 'Guide',
- items: [
- {text: 'Guide', link: '/en/guide/'},
- {text: 'Actions Build', link: '/en/guide/action-build'},
- {text: 'Manual Build', link: '/en/guide/manual-build'},
- {text: 'Extension List', link: '/en/guide/extensions'},
- {text: 'Extension Notes', link: '/en/guide/extension-notes'},
- {text: 'Command Generator', link: '/en/guide/cli-generator'},
- {text: 'Environment Variables', link: '/en/guide/env-vars', collapsed: true,},
- {text: 'Dependency Table', link: '/en/guide/deps-map'},
- ]
- },
- {
- items: [
- {text: 'Troubleshooting', link: '/en/guide/troubleshooting'},
- {text: 'Build on Windows', link: '/en/guide/build-on-windows'},
- ],
- }
- ],
- '/en/develop/': [
- {
- text: 'Development',
- items: [
- {text: 'Get Started', link: '/en/develop/'},
- {text: 'Project Structure', link: '/en/develop/structure'},
- {text: 'PHP Source Modification', link: '/en/develop/php-src-changes'},
- ],
- },
- {
- text: 'Module',
- items: [
- {text: 'Doctor ', link: '/en/develop/doctor-module'},
- {text: 'Source', link: '/en/develop/source-module'},
- ]
- },
- {
- text: 'Extra',
- items: [
- {text: 'Compilation Tools', link: '/en/develop/system-build-tools'},
- ]
- }
- ],
- '/en/contributing/': [
- {
- text: 'Contributing',
- items: [
- {text: 'Contributing', link: '/en/contributing/'},
- ],
- }
- ],
- };
|