We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aee998 commit 9310f73Copy full SHA for 9310f73
src/runtime/nitro/sitemap/urlset/sources.ts
@@ -23,7 +23,8 @@ export async function fetchDataSource(input: SitemapSourceBase | SitemapSourceRe
23
24
let isHtmlResponse = false
25
try {
26
- const urls = await globalThis.$fetch(url, {
+ const fetchContainer = (url.startsWith('/') && event) ? event : globalThis
27
+ const urls = await fetchContainer.$fetch(url, {
28
...options,
29
responseType: 'json',
30
signal: timeoutController.signal,
0 commit comments