mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-18 16:07:10 +00:00
43 lines
938 B
TypeScript
43 lines
938 B
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
title: "CoreControl",
|
|
description: "Dashboard to manage your entire server infrastructure",
|
|
lastUpdated: true,
|
|
cleanUrls: true,
|
|
metaChunk: true,
|
|
head: [
|
|
['link', { rel: 'icon', type: 'image/png', href: '/logo.png' }],
|
|
],
|
|
themeConfig: {
|
|
logo: '/logo.png',
|
|
nav: [
|
|
{ text: 'Home', link: '/' },
|
|
{ text: 'Installation', link: '/installation' }
|
|
],
|
|
|
|
footer: {
|
|
message: 'Released under the MIT License.',
|
|
copyright: 'Copyright © 2025-present CoreControl'
|
|
},
|
|
|
|
search: {
|
|
provider: 'local',
|
|
},
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Deploy',
|
|
items: [
|
|
{ text: 'Installation', link: '/installation' },
|
|
]
|
|
}
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/crocofied/corecontrol' }
|
|
]
|
|
}
|
|
})
|