[READ-ONLY] Mirror of https://github.com/bombshell-dev/docs. bomb.sh/docs
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: add logging

Nate Moore (Jun 6, 2026, 6:06 PM -0500) b7dfc9ed 0e9c1fa2

+3 -1
+3 -1
router/src/index.ts
··· 23 23 24 24 if (url.pathname.startsWith("/docs")) { 25 25 const origin = docsOrigin(url.host); 26 - let response = await fetch(new URL(url.pathname, origin)); 26 + let response = await fetch(new URL(url.pathname, docsOrigin(url.host))); 27 + console.log({ from: url, to: new URL(url.pathname, docsOrigin(url.host)) }); 28 + 27 29 28 30 // Special case for Starlight's 404 page 29 31 let status = response.status;