mirror of
https://github.com/mivodev/mivo.git
synced 2026-01-26 05:25:42 +07:00
Setup VitePress documentation site
This commit is contained in:
63
docs/.vitepress/config.mts
Normal file
63
docs/.vitepress/config.mts
Normal file
@@ -0,0 +1,63 @@
|
||||
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'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user