Lucien Cartier-Tilet
1e7576be36
All checks were successful
Deploy website to alys.phundrak.com / build (push) Successful in 25s
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
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,
|
|
locales: {
|
|
root: {
|
|
label: 'Français',
|
|
lang: 'fr',
|
|
themeConfig: {
|
|
editLink: {
|
|
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
|
|
},
|
|
nav: [
|
|
{ text: 'Accueil', 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,
|
|
},
|
|
},
|
|
en: {
|
|
label: 'English',
|
|
lang: 'en',
|
|
themeConfig: {
|
|
editLink: {
|
|
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
|
|
},
|
|
nav: [
|
|
{ text: 'Home', link: '/en/' },
|
|
{ text: 'About', link: '/en/about' },
|
|
],
|
|
sidebar: [
|
|
{
|
|
text: 'Main Pages',
|
|
items: [
|
|
{ text: 'Download', link: '/en/download' },
|
|
{ text: 'FAQ', link: '/en/faq' },
|
|
{ text: 'Community', link: '/en/community' },
|
|
{ text: 'About', link: '/en/about' },
|
|
],
|
|
},
|
|
],
|
|
socialLinks: socialLinks,
|
|
},
|
|
},
|
|
},
|
|
});
|