1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00
This commit is contained in:
Maxime Moraine 2020-03-23 11:00:11 +01:00
commit 1bdf483756
20 changed files with 8191 additions and 0 deletions

25
docs/.vuepress/config.js Normal file
View file

@ -0,0 +1,25 @@
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/'
]
}
]
}
]
}
}