2023-01-31 17:13:33 +00:00
|
|
|
import { defineUserConfig, defaultTheme } from 'vuepress';
|
2023-01-31 23:48:09 +00:00
|
|
|
import { removeHtmlExtensionPlugin } from 'vuepress-plugin-remove-html-extension';
|
2023-02-01 01:41:44 +00:00
|
|
|
import head from './head';
|
|
|
|
import locales from './locales';
|
2023-05-08 12:44:10 +00:00
|
|
|
import { themeLocales } from './themeLocales';
|
2023-01-31 17:13:33 +00:00
|
|
|
|
|
|
|
export default defineUserConfig({
|
|
|
|
lang: 'fr-FR',
|
|
|
|
title: 'Lucien Cartier-Tilet',
|
|
|
|
description: 'Site web personnel de Lucien Cartier-Tilet',
|
2023-02-01 01:41:44 +00:00
|
|
|
head: head,
|
2023-01-31 17:13:33 +00:00
|
|
|
markdown: {
|
|
|
|
html: true,
|
|
|
|
linkify: true,
|
|
|
|
typographer: true,
|
|
|
|
},
|
2023-01-31 23:48:09 +00:00
|
|
|
plugins: [removeHtmlExtensionPlugin()],
|
2023-02-01 01:41:44 +00:00
|
|
|
locales: locales,
|
2023-01-31 17:13:33 +00:00
|
|
|
theme: defaultTheme({
|
2023-02-01 00:02:23 +00:00
|
|
|
contributors: false,
|
2023-02-01 01:41:44 +00:00
|
|
|
locales: themeLocales,
|
|
|
|
repo: 'https://labs.phundrak.com/phundrak/phundrak.com',
|
2023-01-31 17:13:33 +00:00
|
|
|
}),
|
|
|
|
});
|