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
// if the user is doing multi-sitempas using the sitemaps config, we warn when root keys are used as they won't do anything
116
-
constinvalidRootKeys=[
117
-
'includeAppSources',
118
-
'sources',
119
-
]
120
-
for(constkeyofinvalidRootKeys){
121
-
if(Object.keys(config).includes(key)){
122
-
logger.warn(`You are using multiple-sitemaps but have provided \`sitemap.${key}\` in your Nuxt config. This will be ignored, please move it to the child sitemap config.`)
123
-
logger.warn('Learn more at: https://nuxtseo.com/sitemap/guides/multi-sitemaps')
124
-
}
116
+
constwarnForIgnoredKey=(key: string)=>{
117
+
logger.warn(`You are using multiple-sitemaps but have provided \`sitemap.${key}\` in your Nuxt config. This will be ignored, please move it to the child sitemap config.`)
118
+
logger.warn('Learn more at: https://nuxtseo.com/sitemap/guides/multi-sitemaps')
0 commit comments