fix: use absolute path in gql client (#5454)

This commit is contained in:
DarkSky
2023-12-29 14:48:04 +08:00
committed by GitHub
parent 5a1065c646
commit 3082d63948
3 changed files with 15 additions and 11 deletions

View File

@@ -2,8 +2,19 @@ export * from './fetcher';
export * from './graphql';
export * from './schema';
export * from './utils';
import '@affine/env/global';
import { setupGlobal } from '@affine/env/global';
import { gqlFetcherFactory } from './fetcher';
export const fetcher = gqlFetcherFactory('/graphql');
setupGlobal();
export function getBaseUrl(): string {
if (environment.isDesktop) {
return runtimeConfig.serverUrlPrefix;
}
const { protocol, hostname, port } = window.location;
return `${protocol}//${hostname}${port ? `:${port}` : ''}`;
}
export const fetcher = gqlFetcherFactory(getBaseUrl() + '/graphql');