alys.phundrak.com/docs/.vitepress/config.mts
Lucien Cartier-Tilet 82c2f58a1f
All checks were successful
Deploy website to alys.phundrak.com / build (push) Successful in 20s
ci: add CI file
2024-03-10 10:38:41 +01:00

34 lines
870 B
TypeScript

// -*- mode: typescript; -*-
import { defineConfig } from 'vitepress';
import socialLinks from './social';
import appHead from './head';
export default defineConfig({
title: 'ALYS',
description: 'Chanteuse Virtuelle Francophone',
head: appHead,
cleanUrls: true,
lastUpdated: true,
themeConfig: {
editLink: {
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
},
nav: [
{ text: 'Home', link: '/' },
{ text: 'À Propos', link: '/about' },
],
sidebar: [
{
text: 'Pages principales',
items: [
{ text: 'Téléchargements', link: '/download' },
{ text: 'FAQ', link: '/faq' },
{ text: 'Communauté', link: '/community' },
{ text: 'À propos', link: '/about' },
],
},
],
socialLinks: socialLinks,
},
});