khatru/docs/.vitepress/config.js
2024-07-15 13:35:40 -03:00

22 lines
621 B
JavaScript

export default {
lang: 'en-US',
title: 'khatru',
description: 'a framework for making Nostr relays',
themeConfig: {
logo: '/logo.png',
nav: [
{text: 'Home', link: '/'},
{text: 'Why', link: '/why'},
{text: 'Use Cases', link: '/use-cases'},
{text: 'Get Started', link: '/getting-started'},
{text: 'Cookbook', link: '/cookbook'},
{text: 'Source', link: 'https://github.com/fiatjaf/khatru'}
],
editLink: {
pattern: 'https://github.com/fiatjaf/khatru/edit/master/docs/:path'
}
},
head: [['link', {rel: 'icon', href: '/logo.png'}]],
cleanUrls: true
}