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

58 lines
1.2 KiB
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: 'Guides', link: '/help/guides/getting-started' },
2019-09-19 05:07:01 +02:00
{ text: 'FAQ', link: '/help/faq/application' },
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: [
'/',
{
title: 'Guides',
2019-09-19 19:22:15 +02:00
children: [
2019-09-19 19:21:22 +02:00
'/help/guides/getting-started',
'/help/guides/reading-local-manga',
'/help/guides/source-problems',
'/help/guides/translation'
]
},
2019-09-18 05:18:43 +02:00
{
title: 'FAQ',
2019-09-19 19:22:15 +02:00
children: [
2019-09-20 05:11:46 +02:00
'/help/faq/application',
'/help/faq/extensions'
2019-09-19 19:21:22 +02:00
]
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-19 00:51:57 +02:00
'container',
2019-09-19 01:18:43 +02:00
{
type: 'expander',
before: info => `<details><summary>${info}</summary>\n`,
after: '</details>\n'
2019-09-19 01:18:43 +02:00
}
]
]
2019-09-16 20:54:56 +02:00
}