1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-31 05:24:20 +00:00
5e-drs/docs/.vuepress/config.js
Maxime Moraine 1bdf483756 initial
2020-03-23 11:00:11 +01:00

25 lines
614 B
JavaScript

module.exports = {
title: 'Héros & Dragons',
description: 'Document de Référence Système pour le jeu de rôle Héros & Dragons',
themeConfig: {
searchPlaceholder: 'Recherche',
nav: [
{ text: 'Home', link: '/' },
{ text: 'À propos', link: '/a-propos/' }
],
sidebar: [
{
title: 'Pour les joueurs',
children: [
{
title: 'Création du personnage',
path: '/creation-du-personnage/',
children: [
'/creation-du-personnage/au-dela-du-niveau-1/'
]
}
]
}
]
}
}