mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-12-21 23:51:58 +01:00
f7b715ce0d
Categorizes and starts to complement the FAQ
41 lines
948 B
JavaScript
41 lines
948 B
JavaScript
module.exports = {
|
|
title: 'Tachiyomi',
|
|
description: 'Free and open source manga reader for Android.',
|
|
dest: './public',
|
|
themeConfig: {
|
|
repo: 'inorichi/tachiyomi',
|
|
docsRepo: 'tachiyomiorg/website',
|
|
docsDir: 'src',
|
|
editLinks: true,
|
|
nav: [
|
|
{ text: 'Guide', link: '/help/guide/' },
|
|
{ text: 'FAQ', link: '/help/faq/' },
|
|
{ text: 'Extensions', link: '/extensions/' },
|
|
{ text: 'Wiki', link: 'https://github.com/inorichi/tachiyomi/wiki' },
|
|
{ text: 'Discord', link: 'https://discord.gg/tachiyomi' },
|
|
{ text: 'Reddit', link: 'https://reddit.com/r/Tachiyomi' }
|
|
],
|
|
sidebar: [
|
|
'/',
|
|
'/help/guide/',
|
|
{
|
|
title: 'FAQ',
|
|
path: '/help/faq/',
|
|
collapsable: false,
|
|
children: ['/help/faq/application/', '/help/faq/extensions/']
|
|
},
|
|
'/extensions/'
|
|
],
|
|
lastUpdated: 'Last Updated'
|
|
},
|
|
plugins: [
|
|
['@vuepress/back-to-top'],
|
|
[
|
|
'@vuepress/google-analytics',
|
|
{
|
|
'ga': 'UA-148212082-1'
|
|
}
|
|
]
|
|
]
|
|
}
|