(url: URL, cookie: string)
| 20 | |
| 21 | /** A document navigation request — what the SSR gate keys on. */ |
| 22 | const documentRequest = (url: URL, cookie: string) => |
| 23 | Effect.promise(() => |
| 24 | fetch(url, { redirect: "manual", headers: { accept: "text/html", cookie } }), |
| 25 | ); |
| 26 | |
| 27 | /** |
| 28 | * The install command is rendered inside a <pre> (shiki's grammar isn't loaded |
no test coverage detected