Lucien Cartier-Tilet
9641f40f65
All checks were successful
continuous-integration/drone/push Build is passing
This commit not only fixes the missing privacy page in the sidebar when the website is in English or Elefen, but it also simplifies listing all pages available on the website regardless of the language.
25 lines
695 B
TypeScript
25 lines
695 B
TypeScript
import { defineUserConfig, defaultTheme } from 'vuepress';
|
|
import { removeHtmlExtensionPlugin } from 'vuepress-plugin-remove-html-extension';
|
|
import head from './head';
|
|
import locales from './locales';
|
|
import { themeLocales } from './themeLocales';
|
|
|
|
export default defineUserConfig({
|
|
lang: 'fr-FR',
|
|
title: 'Lucien Cartier-Tilet',
|
|
description: 'Site web personnel de Lucien Cartier-Tilet',
|
|
head: head,
|
|
markdown: {
|
|
html: true,
|
|
linkify: true,
|
|
typographer: true,
|
|
},
|
|
plugins: [removeHtmlExtensionPlugin()],
|
|
locales: locales,
|
|
theme: defaultTheme({
|
|
contributors: false,
|
|
locales: themeLocales,
|
|
repo: 'https://labs.phundrak.com/phundrak/phundrak.com',
|
|
}),
|
|
});
|