tachiyomi-website/src/.vuepress/config.js
arkon f7b715ce0d
Merge pull request #12 from alessandrojean/faq
Categorizes and starts to complement the FAQ
2019-09-18 09:51:04 -04:00

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'
}
]
]
}