mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
937 B
40 lines
937 B
import { defineConfig } from 'vitepress'
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
title: "ass docs",
|
|
description: "Documentation for ass, a ShareX server",
|
|
cleanUrls: true,
|
|
|
|
themeConfig: {
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
nav: [
|
|
{ text: 'Home', link: '/' },
|
|
{ text: 'Install', link: '/install/' }
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Install',
|
|
link: '/install/',
|
|
items: [
|
|
{ text: 'Docker', link: '/install/docker' },
|
|
{ text: 'Local', link: '/install/local' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Customize',
|
|
link: '/customize/',
|
|
items: [
|
|
{ text: 'Colors', link: '/customize/colors' }
|
|
]
|
|
}
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/tycrek/ass/' },
|
|
{ icon: 'discord', link: 'https://discord.gg/wGZYt5fasY' }
|
|
]
|
|
}
|
|
})
|