phundrak.com/content/.vuepress/config.ts
Lucien Cartier-Tilet c2666c0107
All checks were successful
continuous-integration/drone/push Build is passing
fix(docs): remove incorrect configuration line
Signed-off-by: Lucien Cartier-Tilet <lucien@phundrak.com>
2023-02-27 22:49:04 +01:00

25 lines
691 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',
}),
});