Inceptum/docs/.vitepress/config.mts
JFronny cf9342843b
Some checks failed
ci/woodpecker/push/vitepress Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
docs: convert to vitepress
2024-09-30 17:42:57 +02:00

34 lines
1001 B
TypeScript

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Inceptum",
description: "Inceptum Docs",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
sidebar: [
{ text: 'About', link: '/index.md' },
{ text: 'Installing', link: '/Installing.md' },
{ text: 'CLI', link: '/Commands.md' },
{ text: 'Syncing instances', link: '/Syncing.md' },
{ text: 'File Formats', link: '/FileFormats.md' },
{ text: 'Modules', link: '/Modules.md' }
],
socialLinks: [
{ icon: 'github', link: 'https://git.frohnmeyer-wds.de/JfMods/Inceptum' }
],
search: {
provider: "local"
},
},
outDir: '../public',
base: '/JfMods/Inceptum/',
mpa: true,
lang: 'en-US',
sitemap: {
hostname: 'https://pages.frohnmeyer-wds.de/JfMods/Inceptum/'
}
})