Files
web-frontend/docs/.vitepress/config.ts
2026-05-01 11:41:30 +07:00

43 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineConfig } from 'vitepress';
export default defineConfig({
title: 'Техническое задание',
description: 'Техническое задание на разработку личного кабинета Фрегат',
lang: 'ru-RU',
cleanUrls: true,
themeConfig: {
nav: [
{ text: 'Техническое задание', link: '/' },
],
sidebar: [
{
text: 'Техническое задание',
items: [
{ text: '0. Общие положения', link: '/' },
{ text: '1. Основания и нормативная база', link: '/tz/normative-base' },
{ text: '2. Назначение и границы продукта', link: '/tz/product-scope' },
{ text: '3. Роли и права доступа', link: '/tz/roles-access' },
{ text: '4. Функциональные требования', link: '/tz/functional-requirements' },
{ text: '5. Данные и интеграции', link: '/tz/data-integrations' },
{ text: '6. Экранные формы и текстовые прототипы', link: '/tz/stage-1/' },
{ text: '7. Приемка и состав артефактов', link: '/tz/acceptance' },
],
},
{
text: 'Приложения',
items: [
{ text: 'А. Текущее состояние продукта', link: '/appendix/current-state' },
],
},
],
outline: [2, 3],
search: {
provider: 'local',
},
footer: {
message: 'Черновик ТЗ для согласования с заказчиком',
copyright: 'Фрегат Групп / ИП Бакиев',
},
},
});