mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 06:18:19 +01:00
37 lines
918 B
TypeScript
37 lines
918 B
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
title: "Lysand Documentation",
|
|
description: "Documentation for Lysand, a new federated protocol",
|
|
srcDir: 'docs',
|
|
themeConfig: {
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
nav: [
|
|
{ text: 'Home', link: '/' },
|
|
{ text: 'Specification', link: '/spec' }
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Spec Details',
|
|
items: [
|
|
{ text: 'Spec', link: '/spec' },
|
|
{ text: "Objects", link: '/objects' },
|
|
]
|
|
},
|
|
{
|
|
text: "Structures",
|
|
items: [
|
|
{ text: "Content Format", link: '/structures/content-format' },
|
|
{ text: "Custom Emoji", link: '/structures/custom-emoji' },
|
|
]
|
|
}
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/lysand-org/' }
|
|
]
|
|
}
|
|
})
|