From ee87c34ff162693b7a039027c12211930b409c44 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Tue, 14 Jul 2020 01:10:47 -0700 Subject: [PATCH] fix docs sitemap generation [skip ci] --- docs/docusaurus.config.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index a99f07b..88c90f3 100755 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -2,8 +2,6 @@ const githubURL = "https://github.com/checktheroads/hyperglass"; const { googleTrackingId, algoliaKey } = process.env; -require("./generateSitemap"); - module.exports = { title: "hyperglass", tagline: "the network looking glass that tries to make the internet better.", @@ -18,10 +16,6 @@ module.exports = { trackingID: googleTrackingId || " ", anonymizeIP: false, }, - gtag: { - trackingID: googleTrackingId || " ", - anonymizeIP: false, - }, algolia: { apiKey: algoliaKey, indexName: "hyperglass", @@ -107,7 +101,6 @@ module.exports = { ], plugins: [ "@docusaurus/plugin-google-analytics", - "@docusaurus/plugin-google-gtag", - "@docusaurus/plugin-sitemap", + require("./generateSitemap"), ], };