mirror of
https://github.com/fiatjaf/khatru.git
synced 2025-03-25 17:21:43 +01:00
22 lines
621 B
JavaScript
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
|
|
}
|