mirror of
https://github.com/tachiyomiorg/website.git
synced 2025-01-23 15:31:16 +01:00
8b4e4a5291
Fixed capitalization for "Getting started", added "Translation" and "Source problems", fixed stuff in "Reading local manga". This branch has a link which is dependant on #21.
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
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: 'Guides', link: '/help/guides/getting-started' },
|
|
{ text: 'FAQ', link: '/help/faq/application' },
|
|
{ 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: [
|
|
'/',
|
|
{
|
|
title: 'Guides',
|
|
children: ['/help/guides/getting-started', '/help/guides/reading-local-manga', '/help/guides/source-problems', '/help/guides/translation']
|
|
},
|
|
{
|
|
title: 'FAQ',
|
|
children: ['/help/faq/application', '/help/faq/extensions']
|
|
},
|
|
'/extensions/'
|
|
],
|
|
lastUpdated: 'Last Updated'
|
|
},
|
|
plugins: [
|
|
[
|
|
'@vuepress/back-to-top'
|
|
],
|
|
[
|
|
'@vuepress/google-analytics',
|
|
{ 'ga': 'UA-148212082-1' }
|
|
],
|
|
[
|
|
'container',
|
|
{
|
|
type: 'expander',
|
|
before: info => `<details><summary>${info}</summary>\n`,
|
|
after: '</details>\n'
|
|
}
|
|
]
|
|
]
|
|
}
|