2019-09-16 20:54:56 +02:00
|
|
|
module.exports = {
|
2019-09-17 16:28:53 +02:00
|
|
|
title: 'Tachiyomi',
|
2019-09-18 06:48:08 +02:00
|
|
|
description: 'Free and open source manga reader for Android.',
|
2019-09-16 20:54:56 +02:00
|
|
|
dest: './public',
|
2019-10-01 12:04:55 +02:00
|
|
|
head: [
|
|
|
|
['script', { src: 'https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js'} , ''],
|
|
|
|
['link', { rel: "stylesheet", type: "text/css", href: 'https://unpkg.com/flickity@2/dist/flickity.min.css'} , ''],
|
|
|
|
['link', { rel: "stylesheet", type: "text/css", href: '/assets/css/carousel.css'} , '']
|
|
|
|
],
|
2019-09-16 20:54:56 +02:00
|
|
|
themeConfig: {
|
|
|
|
repo: 'inorichi/tachiyomi',
|
|
|
|
docsRepo: 'tachiyomiorg/website',
|
|
|
|
docsDir: 'src',
|
|
|
|
editLinks: true,
|
2019-09-23 12:23:00 +02:00
|
|
|
nav: require('./config/nav'),
|
|
|
|
sidebar: require('./config/sidebar'),
|
2019-09-17 16:28:53 +02:00
|
|
|
lastUpdated: 'Last Updated'
|
2019-09-18 06:48:08 +02:00
|
|
|
},
|
2019-09-23 12:23:00 +02:00
|
|
|
plugins: require('./config/plugins'),
|
|
|
|
extraWatchFiles: [
|
|
|
|
'.vuepress/config/nav.js',
|
|
|
|
'.vuepress/config/sidebar.js',
|
|
|
|
'.vuepress/config/plugins.js'
|
2019-09-18 06:48:08 +02:00
|
|
|
]
|
2019-09-16 20:54:56 +02:00
|
|
|
}
|