9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-19 14:59:25 +00:00
Files
DivineMC/docs/.vitepress/config.ts
Artem Ostrasev e974771d69 [ci-skip] Use VitePress instead of Docusaurus (#7)
* [ci-skip] full rework of docs

* [ci-skip] update index page

* [ci-skip] fix logo

* [ci-skip] fix logo 2
2023-08-28 02:02:57 +03:00

43 lines
1.1 KiB
TypeScript

import { defineConfig } from 'vitepress'
export default defineConfig({
head: [['link', { rel: 'icon', href: 'favicon.ico' }]],
title: "DivineMC",
cleanUrls: true,
description: "DivineMC is the fork of Purpur compatible with Spigot plugins, offering the best performance for your server.",
themeConfig: {
logo: 'logo.png',
nav: [
{ text: 'Home', link: '/' },
{ text: 'Documentation', link: '/docs/' }
],
sidebar: [
{
text: 'Documentation',
items: [
{ text: 'Overview', link: '/docs/' }
]
},
{
text: 'Administration',
items: [
{ text: 'Getting Started', link: '/docs/admin/getting-started' },
{ text: 'Configuration', link: '/docs/admin/configuration' }
]
},
{
text: 'Development',
items: [
{ text: 'Contributing to DivineMC', link: '/docs/dev/contributing' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/DivineMC/DivineMC' },
{ icon: 'discord', link: 'https://discord.gg/p7cxhw7E2M' }
]
}
})