module.exports = { docs: [ // Основное меню 'about', // отдельный пункт { type: 'category', label: 'Создание проекта', link: {type: 'doc', id: 'create/create'}, // узел дерева - название раздела items: [ 'create/local', ], // пункты, входящие в раздел }, { type: 'category', label: 'Редактирование проекта', link: {type: 'doc', id: 'edit/edit'}, // узел дерева - название раздела items: [ 'edit/start', ], // пункты, входящие в раздел }, ], others: [ // Новое меню 'others/others', // slug: others/ { type: 'category', label: 'Примеры', link: {type: 'doc', id: 'others/examples/examples'}, // узел дерева - название раздела items: [ 'others/examples/example1','others/examples/example2', ], // пункты, входящие в раздел }, ] }