43 lines
938 B
TypeScript
Raw Normal View History

2025-04-20 18:44:27 +02:00
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "CoreControl",
description: "Dashboard to manage your entire server infrastructure",
2025-04-20 19:54:58 +02:00
lastUpdated: true,
cleanUrls: true,
metaChunk: true,
head: [
['link', { rel: 'icon', type: 'image/png', href: '/logo.png' }],
],
2025-04-20 18:44:27 +02:00
themeConfig: {
2025-04-20 19:54:58 +02:00
logo: '/logo.png',
2025-04-20 18:44:27 +02:00
nav: [
{ text: 'Home', link: '/' },
2025-04-20 19:54:58 +02:00
{ text: 'Installation', link: '/installation' }
2025-04-20 18:44:27 +02:00
],
2025-04-20 19:54:58 +02:00
footer: {
message: 'Released under the MIT License.',
copyright: 'Copyright © 2025-present CoreControl'
},
search: {
provider: 'local',
},
2025-04-20 18:44:27 +02:00
sidebar: [
{
2025-04-20 19:54:58 +02:00
text: 'Deploy',
2025-04-20 18:44:27 +02:00
items: [
2025-04-20 19:54:58 +02:00
{ text: 'Installation', link: '/installation' },
2025-04-20 18:44:27 +02:00
]
}
],
socialLinks: [
2025-04-20 19:54:58 +02:00
{ icon: 'github', link: 'https://github.com/crocofied/corecontrol' }
2025-04-20 18:44:27 +02:00
]
}
})