|
| 1 | +import { defineConfig } from 'vitepress' |
| 2 | + |
| 3 | +export default defineConfig({ |
| 4 | + base: '/docs/', |
| 5 | + title: 'Bidaro', |
| 6 | + description: 'Макет реального веб-приложения в предметной области продажи товаров в форме английского онлайн-аукциона', |
| 7 | + themeConfig: { |
| 8 | + nav: [ |
| 9 | + { text: 'О проекте', link: '/about/what-is-it', activeMatch: '/about/' }, |
| 10 | + { text: 'Разработка', link: '/about-dev/what-is-dev', activeMatch: '/about-dev/' }, |
| 11 | + ], |
| 12 | + sidebar: { |
| 13 | + '/about/': [ |
| 14 | + { |
| 15 | + text: 'Начало', |
| 16 | + items: [ |
| 17 | + { text: 'Что это такое?', link: '/about/what-is-it' }, |
| 18 | + { text: 'Предметная область', link: '/about/subject-area' }, |
| 19 | + { text: 'Бизнес анализ', link: '/about/business-analysis' }, |
| 20 | + { text: 'Предыстория', link: '/about/prehistory' }, |
| 21 | + ], |
| 22 | + }, |
| 23 | + { |
| 24 | + text: 'Продукт', |
| 25 | + items: [ |
| 26 | + { text: 'Общее видение', link: '/about/product/shared-vision' }, |
| 27 | + { text: 'Бизнес модель', link: '/about/product/business-model' }, |
| 28 | + { text: 'План разработки', link: '/about/product/development-plan' }, |
| 29 | + ], |
| 30 | + }, |
| 31 | + { |
| 32 | + text: 'Функционал', |
| 33 | + items: [ |
| 34 | + { text: 'Аутентификация', link: '/about/feature/authentication' }, |
| 35 | + { text: 'Авторизация', link: '/about/feature/authorization' }, |
| 36 | + { text: 'Профили', link: '/about/feature/profiles' }, |
| 37 | + { text: 'Торги', link: '/about/feature/bidding' }, |
| 38 | + { text: 'Каталог', link: '/about/feature/catalog' }, |
| 39 | + { text: 'Обслуживание', link: '/about/feature/maintenance' }, |
| 40 | + ], |
| 41 | + }, |
| 42 | + { |
| 43 | + text: 'Будущее', |
| 44 | + items: [ |
| 45 | + { text: 'Изображения', link: '/about/future/images' }, |
| 46 | + { text: 'Чатинг', link: '/about/future/chating' }, |
| 47 | + ], |
| 48 | + }, |
| 49 | + ], |
| 50 | + '/about-dev/': [ |
| 51 | + { |
| 52 | + text: 'Разработка', |
| 53 | + items: [ |
| 54 | + { text: 'Что такое разработка?', link: '/about-dev/what-is-dev' }, |
| 55 | + { text: 'Инфраструктура', link: '/about-dev/infrastructure' }, |
| 56 | + { text: 'Тестирование', link: '/about-dev/testing' }, |
| 57 | + ], |
| 58 | + }, |
| 59 | + ], |
| 60 | + }, |
| 61 | + }, |
| 62 | +}) |
0 commit comments