kb-zup/astro.config.mjs
wakadakawaka 1587f32ca8 first
2025-04-25 21:42:06 +05:00

31 lines
840 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
base: '/',
integrations: [
starlight({
title: 'Программный интерфейс ЗУП',
customCss: [
// Relative path to your custom CSS file
'./src/styles/custom.css',
],
//social: [{ icon: 'github', label: 'GitHub', href: 'https://git.sinenikolsky.ru/artem/starlite-bsp-kb.git' }],
sidebar: [
{
collapsed: true,
label: 'Зарплата и управление персоналом',
autogenerate: { directory: 'zup' },
},
{
collapsed: true,
label: 'Библиотека стандартных подсистем',
autogenerate: { directory: 'bsp' },
},
],
}),
],
});