We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b439cca commit 226be0bCopy full SHA for 226be0b
packages/util/src/url.ts
@@ -24,6 +24,8 @@ export function isCloudWorkstation(host: string): boolean {
24
}
25
26
export async function testConnectionAlive(endpoint: string): Promise<boolean> {
27
- const result = await fetch(endpoint);
+ const result = await fetch(endpoint, {
28
+ credentials: 'include'
29
+ });
30
return result.ok;
31
0 commit comments