cours/docs/.vitepress/config.js

105 lines
2.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default {
lang: "fr",
title: "3W",
titleTemplate: "Support de cours",
description: "Cest cool je crois.",
lastUpdated: true,
themeConfig: {
nav: [
{
text: "Dev",
link: "/dev/",
activeMatch: "/dev/"
// items: [
// { text: "Sommaire", link: "/dev/" },
// { text: "B1", link: "/dev/B1/" },
// { text: "B2", link: "/dev/B2/" },
// { text: "B3", link: "/dev/B3/" }
// ]
},
{ text: "Design", link: "/design/", activeMatch: "/design/" },
{ text: "À propos", link: "/a-propos", activeMatch: "/a-propos" }
],
sidebar: {
// This sidebar gets displayed when user is
// under `dev` directory.
"/dev/": [
{
text: "Général",
items: [
{ text: "Sommaire", link: "/dev/" }, // /dev/index.md
{ text: "Documentations", link: "/dev/docs" },
{ text: "Outils", link: "/dev/outils" }
]
},
{
text: "B1",
collapsible: true,
collapsed: true,
items: [
{ text: "Sommaire B1", link: "/dev/B1/" },
{ text: "Introduction", link: "/dev/B1/introduction" },
{ text: "HTML", link: "/dev/B1/html" }
]
},
{
text: "B2",
collapsible: true,
collapsed: true,
items: [
{ text: "Sommaire B2", link: "/dev/B2/" },
{ text: "Introduction", link: "/dev/B2/introduction" },
{ text: "HTML", link: "/dev/B2/html" }
]
},
{
text: "B3",
collapsible: true,
collapsed: true,
items: [
{ text: "Sommaire B3", link: "/dev/B3/" },
{ text: "Introduction", link: "/dev/B3/introduction" },
{ text: "HTML", link: "/dev/B3/html" }
]
},
{
text: "Code Camp",
collapsible: true,
collapsed: true,
items: [{ text: "Théorie", link: "/dev/code-camp/" }]
}
],
"/design/": [
{
text: "Design",
items: [
{ text: "Index", link: "/design/" },
{ text: "Introduction", link: "/design/introduction" }
]
}
]
},
outlineTitle: "Sur cette page",
lastUpdatedText: "Mis à jour le",
footer: {
message: "Ces contenus sont publiés sous licence Creative Commons",
copyright: "CC BY 4.0"
},
docFooter: {
prev: "Précédent",
next: "Suivant"
}
},
markdown: {
theme: "one-dark-pro",
externalLinks: {
target: "_self"
}
}
};