Skip to content

Commit 9310f73

Browse files
committedSep 27, 2024
fix(cloudflarePages): broken relative url endpoints
Fixes #365
1 parent 0aee998 commit 9310f73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/runtime/nitro/sitemap/urlset/sources.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export async function fetchDataSource(input: SitemapSourceBase | SitemapSourceRe
2323

2424
let isHtmlResponse = false
2525
try {
26-
const urls = await globalThis.$fetch(url, {
26+
const fetchContainer = (url.startsWith('/') && event) ? event : globalThis
27+
const urls = await fetchContainer.$fetch(url, {
2728
...options,
2829
responseType: 'json',
2930
signal: timeoutController.signal,

0 commit comments

Comments
 (0)