2024-03-09 16:28:28 +00:00
|
|
|
// -*- 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,
|
|
|
|
themeConfig: {
|
|
|
|
editLink: {
|
2024-03-09 17:10:03 +00:00
|
|
|
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
|
2024-03-09 16:28:28 +00:00
|
|
|
},
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
});
|