From 840c983384e27c835a1d30eb9d9c887e2b20e8c5 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Fri, 18 Jun 2021 19:20:52 +0200 Subject: [PATCH] fix(sitemap): added hostname in config --- nuxt.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nuxt.config.js b/nuxt.config.js index a1f37aae..48ed11b8 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -55,7 +55,7 @@ export default { '@nuxtjs/svg', 'nuxt-i18n', '@nuxtjs/markdownit', - '@nuxtjs/sitemap' + '@nuxtjs/sitemap' // Must stay last ], // Axios module configuration (https://go.nuxtjs.dev/config-axios) @@ -121,5 +121,10 @@ export default { wght: [300, 400, 500, 700, 900] } } + }, + + sitemap: { + hostname: 'https://it-tools.tech', + gzip: true } }