2019-09-16 20:54:56 +02:00
|
|
|
module.exports = {
|
|
|
|
dest: './public',
|
2020-05-07 23:27:16 +02:00
|
|
|
temp: './node_modules/.temp/theme',
|
|
|
|
|
|
|
|
title: 'Tachiyomi',
|
|
|
|
description: 'Free and open source manga reader for Android',
|
|
|
|
|
|
|
|
// prettier-ignore
|
2019-10-01 12:04:55 +02:00
|
|
|
head: [
|
2020-05-07 23:27:16 +02:00
|
|
|
// PWA headers
|
|
|
|
['link', { rel: 'icon', href: '/favicon.ico' }],
|
|
|
|
['link', { rel: 'manifest', href: '/manifest.json' }],
|
|
|
|
['link', { rel: 'apple-touch-icon', href: '/icons/apple-touch-icon-152x152.png' }],
|
|
|
|
['link', { rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', color: '#2e84bf' }],
|
|
|
|
['meta', { prefix: 'og: http://ogp.me/ns#', property: 'og:image', content: 'https://tachiyomi.org/icons/logo.png' }],
|
|
|
|
['meta', { name: 'theme-color', content: '#2e84bf' }],
|
|
|
|
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
|
|
|
|
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
|
|
|
|
['meta', { name: 'msapplication-TileImage', content: '/icons/msapplication-icon-144x144.png' }],
|
|
|
|
['meta', { name: 'msapplication-TileColor', content: '#2e84bf' }],
|
|
|
|
// Custom headers
|
|
|
|
['link', { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin:''}],
|
|
|
|
['link', { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Open+Sans'}],
|
2019-10-01 12:04:55 +02:00
|
|
|
],
|
2020-05-07 23:27:16 +02:00
|
|
|
|
2019-09-16 20:54:56 +02:00
|
|
|
themeConfig: {
|
2020-05-07 23:27:16 +02:00
|
|
|
logo: '/icons/logo.svg',
|
2019-09-16 20:54:56 +02:00
|
|
|
repo: 'inorichi/tachiyomi',
|
|
|
|
docsRepo: 'tachiyomiorg/website',
|
|
|
|
docsDir: 'src',
|
2020-05-11 19:50:31 +02:00
|
|
|
smoothScroll: true,
|
2020-04-30 18:53:10 +02:00
|
|
|
algolia: {
|
|
|
|
apiKey: 'fc1c45b5a3835e1882cbbf0751dfe705',
|
|
|
|
indexName: 'tachiyomi'
|
|
|
|
},
|
|
|
|
searchPlaceholder: 'Search...',
|
2019-09-16 20:54:56 +02:00
|
|
|
editLinks: true,
|
2019-10-04 04:13:28 +02:00
|
|
|
editLinkText: 'Help us improve this page',
|
2020-05-07 23:27:16 +02:00
|
|
|
lastUpdated: 'Last Updated',
|
2019-09-23 12:23:00 +02:00
|
|
|
nav: require('./config/nav'),
|
2019-10-03 13:20:50 +02:00
|
|
|
sidebar: {
|
|
|
|
'/help/guides/': require('./config/sidebar/guides'),
|
|
|
|
'/help/faq/': require('./config/sidebar/faq'),
|
|
|
|
'/help/contribution': require('./config/sidebar/contribution'),
|
2020-03-05 06:11:00 +01:00
|
|
|
'/extensions': require('./config/sidebar/extensions'),
|
|
|
|
'/forks': require('./config/sidebar/forks')
|
2020-05-07 23:27:16 +02:00
|
|
|
}
|
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',
|
2019-10-03 13:20:50 +02:00
|
|
|
'.vuepress/config/plugins.js',
|
|
|
|
'.vuepress/config/sidebar/guides.js',
|
|
|
|
'.vuepress/config/sidebar/faq.js',
|
|
|
|
'.vuepress/config/sidebar/contribution.js',
|
|
|
|
'.vuepress/config/sidebar/extensions.js'
|
2019-09-18 06:48:08 +02:00
|
|
|
]
|
2019-09-16 20:54:56 +02:00
|
|
|
}
|