mirror of
https://github.com/mivodev/mivo.git
synced 2026-01-26 21:41:59 +07:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export default defineConfig({
|
|
title: "MIVO",
|
|
description: "Modern Mikrotik Voucher Management System",
|
|
lang: 'en-US',
|
|
cleanUrls: true,
|
|
lastUpdated: true,
|
|
|
|
head: [
|
|
['link', { rel: 'icon', href: '/logo.png' }]
|
|
],
|
|
|
|
themeConfig: {
|
|
logo: '/logo.png',
|
|
siteTitle: 'MIVO',
|
|
|
|
nav: [
|
|
{ text: 'Home', link: '/' },
|
|
{ text: 'Guide', link: '/guide/installation' },
|
|
{ text: 'Docker', link: '/guide/docker' },
|
|
{ text: 'GitHub', link: 'https://github.com/dyzulk/mivo' }
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Introduction',
|
|
items: [
|
|
{ text: 'What is MIVO?', link: '/' },
|
|
{ text: 'Installation', link: '/guide/installation' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Deployment',
|
|
items: [
|
|
{ text: 'Docker Guide', link: '/guide/docker' },
|
|
{ text: 'Manual Installation', link: '/guide/installation#manual-installation' },
|
|
{ text: 'PaaS / Cloud', link: '/guide/installation#paas-cloud-railway-render-heroku' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Support',
|
|
items: [
|
|
{ text: 'Contribution', link: 'https://github.com/dyzulk/mivo/blob/main/CONTRIBUTING.md' },
|
|
{ text: 'Donate', link: 'https://sociabuzz.com/dyzulkdev/tribe' }
|
|
]
|
|
}
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/dyzulk/mivo' }
|
|
],
|
|
|
|
footer: {
|
|
message: 'Released under the MIT License.',
|
|
copyright: 'Copyright © 2026 DyzulkDev'
|
|
},
|
|
|
|
search: {
|
|
provider: 'local'
|
|
}
|
|
}
|
|
})
|