|
const res = await fetch(`${baseUrl}/${path.startsWith("/") ? path.substring(1) : path}`, { ...defaultFetchOpts, ...opts });
|
|
const res = await fetch(`${baseUrl}/${path.startsWith("/") ? path.substring(1) : path}`, { ...defaultFetchOpts, ...opts });
|
|
return { res, status: res.status, headers: res.headers };
|
|
return { res, status: res.status, headers: res.headers };
|