Files
web-frontend/docs/.vitepress/config.ts
2026-05-04 09:59:07 +07:00

31 lines
940 B
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: 'Единый документ ТЗ', link: '/' },
{ text: 'Содержание разделов', link: '/tz/' },
],
},
],
outline: [2, 3],
search: {
provider: 'local',
},
footer: {
message: 'Техническое задание на разработку программного продукта',
copyright: 'Фрегат Групп / ИП Бакиев',
},
},
});