Small changes and slight QoL.

Implemented the 'Back to Top' plugin.
Added tracking using Google Analytics.
Fixed puncutation in site description.
This commit is contained in:
Simon Mattila 2019-09-18 06:48:08 +02:00
parent 92b0cf614b
commit f69958ceb5
2 changed files with 13 additions and 2 deletions

View File

@ -11,6 +11,8 @@
}, },
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@vuepress/plugin-back-to-top": "^1.0.0-rc.1",
"@vuepress/plugin-google-analytics": "^1.1.0",
"node-sass": "^4.12.0", "node-sass": "^4.12.0",
"sass-loader": "^8.0.0", "sass-loader": "^8.0.0",
"vuepress": "^1.1.0" "vuepress": "^1.1.0"

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
title: 'Tachiyomi', title: 'Tachiyomi',
description: 'Free and open source manga reader for Android', description: 'Free and open source manga reader for Android.',
dest: './public', dest: './public',
themeConfig: { themeConfig: {
repo: 'inorichi/tachiyomi', repo: 'inorichi/tachiyomi',
@ -21,5 +21,14 @@ module.exports = {
'/extensions/' '/extensions/'
], ],
lastUpdated: 'Last Updated' lastUpdated: 'Last Updated'
} },
plugins: [
['@vuepress/back-to-top'],
[
'@vuepress/google-analytics',
{
'ga': 'UA-148212082-1'
}
]
]
} }