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

41 lines
948 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: '/help/guide/' },
{ text: 'FAQ', link: '/help/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' },
{ text: 'Reddit', link: 'https://reddit.com/r/Tachiyomi' }
2019-09-17 16:28:53 +02:00
],
sidebar: [
'/',
'/help/guide/',
2019-09-18 05:18:43 +02:00
{
title: 'FAQ',
path: '/help/faq/',
2019-09-18 05:18:43 +02:00
collapsable: false,
children: ['/help/faq/application/', '/help/faq/extensions/']
2019-09-18 05:18:43 +02:00
},
2019-09-17 17:30:41 +02:00
'/extensions/'
2019-09-17 16:28:53 +02:00
],
lastUpdated: 'Last Updated'
},
plugins: [
['@vuepress/back-to-top'],
[
'@vuepress/google-analytics',
{
'ga': 'UA-148212082-1'
}
]
]
2019-09-16 20:54:56 +02:00
}