From 7ee51de98702804a0230c47e4f786778aace5c90 Mon Sep 17 00:00:00 2001 From: Simon Brunel Date: Fri, 24 Jan 2020 04:58:32 +0100 Subject: [PATCH] Fix Google Analytics plugin docs config --- docs/.vuepress/config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 2d18d7c..0ad7bc3 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -2,10 +2,14 @@ module.exports = { title: 'QtPromise', description: 'Promises/A+ implementation for Qt/C++', dest: 'dist/docs', - ga: 'UA-113899811-1', head: [ ['link', { rel: 'icon', href: `/favicon.png` }], ], + plugins: [ + ['@vuepress/google-analytics', { + ga: 'UA-113899811-1' + }] + ], themeConfig: { repo: 'simonbrunel/qtpromise', lastUpdated: 'Last Updated',