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
|
|
|
]
|
2025-04-21 15:14:40 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: 'General',
|
|
|
|
|
items: [
|
|
|
|
|
{ text: 'Dashboard', link: '/general/dashboard' },
|
|
|
|
|
{ text: 'Servers', link: '/general/servers' },
|
|
|
|
|
{ text: 'Applications', link: '/general/applications' },
|
|
|
|
|
{ text: 'Uptime', link: '/general/uptime' },
|
|
|
|
|
{ text: 'Network', link: '/general/network' },
|
|
|
|
|
{ text: 'Settings', link: '/general/settings' },
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: 'Notifications',
|
|
|
|
|
items: [
|
|
|
|
|
{ text: 'Notifications', link: '/notifications/general' },
|
|
|
|
|
{ text: 'Email', link: '/notifications/email' },
|
|
|
|
|
{ text: 'Telegram', link: '/notifications/telegram' },
|
|
|
|
|
{ text: 'Discord', link: '/notifications/discord' },
|
|
|
|
|
{ text: 'Gotify', link: '/notifications/gotify' },
|
|
|
|
|
{ text: 'Ntfy', link: '/notifications/ntfy' },
|
|
|
|
|
]
|
2025-04-20 18:44:27 +02:00
|
|
|
}
|
2025-04-21 15:14:40 +02:00
|
|
|
|
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
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
})
|