tachiyomi-website/src/.vuepress/config.js

31 lines
733 B
JavaScript
Raw Normal View History

2019-09-16 20:54:56 +02:00
module.exports = {
2019-09-17 16:28:53 +02:00
title: 'Tachiyomi',
description: 'Free and open source manga reader for Android',
2019-09-16 20:54:56 +02:00
dest: './public',
themeConfig: {
repo: 'inorichi/tachiyomi',
docsRepo: 'tachiyomiorg/website',
docsDir: 'src',
editLinks: true,
2019-09-17 16:28:53 +02:00
nav: [
{ text: 'Guide', link: '/guide/' },
{ text: 'FAQ', link: '/faq/' },
2019-09-17 17:30:41 +02:00
{ text: 'Extensions', link: '/extensions/' },
2019-09-17 16:28:53 +02:00
{ text: 'Wiki', link: 'https://github.com/inorichi/tachiyomi/wiki' },
{ text: 'Discord', link: 'https://discord.gg/tachiyomi' }
],
sidebar: [
'/',
'/guide/',
2019-09-18 05:18:43 +02:00
{
title: 'FAQ',
path: '/faq/',
collapsable: false,
children: ['/faq/application/', '/faq/extensions/']
},
2019-09-17 17:30:41 +02:00
'/extensions/'
2019-09-17 16:28:53 +02:00
],
lastUpdated: 'Last Updated'
2019-09-16 20:54:56 +02:00
}
}