Files
slm-design/.vitepress/config.ts

30 lines
737 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitepress';
const sidebar = [
{
text: 'Архитектура',
items: [
{ text: 'Обзор', link: '/architecture/' },
{ text: 'Слои', link: '/architecture/layers' },
{ text: 'Модули', link: '/architecture/modules' },
{ text: 'Сегменты', link: '/architecture/segments' },
],
},
];
export default defineConfig({
srcDir: 'docs',
outDir: 'public/docs',
title: 'SLM Design',
description: 'Правила и стандарты архитектуры проекта',
base: '/docs/',
cleanUrls: true,
themeConfig: {
sidebar,
socialLinks: [
{ icon: 'github', link: 'https://gromlab.ru/gromov/slm-design' },
],
},
});