You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My site uses i18n and is configured with an external link site map. There are no other multi-site map configurations besides this, but the terminal will prompt a warning.
[@nuxtjs/sitemap 17:14:57] WARN You are using multiple-sitemaps but have provided sitemap.sources in your Nuxt config. This will be ignored, please move it to the child sitemap config.
I tried to modify it to a child sitemap, but this will merge the sitemaps of multiple languages into one. What is the best practice for this?
constsitemap: NuxtConfig['sitemap']={sitemaps: {pages: {defaults: {changefreq: 'weekly',},exclude: [
...excludeRoutes,],
urls,},// extending the index sitemap with an external sitemapindex: externalSitemaps.map(sitemap=>({ sitemap })),},}
The text was updated successfully, but these errors were encountered:
My site uses i18n and is configured with an external link site map. There are no other multi-site map configurations besides this, but the terminal will prompt a warning.
This is my current configuration:
I tried to modify it to a child sitemap, but this will merge the sitemaps of multiple languages into one. What is the best practice for this?
The text was updated successfully, but these errors were encountered: