fix(sitemap): added hostname in config

This commit is contained in:
Corentin Thomasset 2021-06-18 19:20:52 +02:00
parent 88bf0091f5
commit 840c983384
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -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
}
}