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

45 lines
1.6 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: '/tz/' },
{ text: 'Этап 1', link: '/tz/stage-1/' },
{ text: 'Текущее состояние', link: '/appendix/current-state' },
],
sidebar: [
{
text: 'Техническое задание',
items: [
{ text: 'Обзор', link: '/tz/' },
{ text: 'Нормативная база', link: '/tz/normative-base' },
{ text: 'Контур продукта', link: '/tz/product-scope' },
{ text: 'Роли и доступ', link: '/tz/roles-access' },
{ text: 'Функциональные требования', link: '/tz/functional-requirements' },
{ text: 'Данные и интеграции', link: '/tz/data-integrations' },
{ text: 'Этап 1 (UX/UI)', link: '/tz/stage-1/' },
{ text: 'Приемка и артефакты', link: '/tz/acceptance' },
],
},
{
text: 'Приложения',
items: [
{ text: 'Текущее состояние продукта', link: '/appendix/current-state' },
],
},
],
outline: [2, 3],
search: {
provider: 'local',
},
footer: {
message: 'Черновик ТЗ для согласования с заказчиком',
copyright: 'Фрегат Групп / ИП Бакиев',
},
},
});