Skip to content

Commit e45432b

Browse files
authoredAug 12, 2024··
fix(module): prevent false positive warning about ignored root keys (#338)
1 parent aab73af commit e45432b

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed
 

‎src/module.ts

+12-9
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,18 @@ export default defineNuxtModule<ModuleOptions>({
113113
const isSitemapIndexOnly = typeof normalizedSitemaps?.index !== 'undefined' && Object.keys(normalizedSitemaps).length === 1
114114
if (!isSitemapIndexOnly) {
115115
// 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-
const invalidRootKeys = [
117-
'includeAppSources',
118-
'sources',
119-
]
120-
for (const key of invalidRootKeys) {
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+
const warnForIgnoredKey = (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')
119+
}
120+
121+
switch (true) {
122+
case config?.sources?.length !== 0:
123+
warnForIgnoredKey('sources')
124+
break
125+
case config?.includeAppSources !== undefined:
126+
warnForIgnoredKey('includeAppSources')
127+
break
125128
}
126129
}
127130
}

0 commit comments

Comments
 (0)
Please sign in to comment.