Docs/.vitepress/config.ts
2023-06-11 21:11:44 +02:00

39 lines
866 B
TypeScript

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "LonaDB",
description: "JSON based Database written in JavaScript",
themeConfig: {
search: {
provider: 'local'
},
nav: [
{ text: 'Home', link: '/' },
{ text: 'Guide', link: '/guide/getting-started' },
{ text: 'Examples', link: '/guide/examples' },
],
sidebar: [
{
text: 'Introduction',
items: [
{ text: 'Getting Started', link: '/guide/getting-started' },
{ text: 'Deploy', link: '/guide/deploy' }
]
},
{
text: 'Guide',
items: [
{ text: 'Examples', link: '/guide/examples' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/LonaDB/Server' }
]
}
})