Files
TheGame/packages/web/graphql/client.ts
2021-03-28 22:08:25 -06:00

9 lines
161 B
TypeScript

import { createClient } from 'urql';
import { CONFIG } from '../config';
export const client = createClient({
url: CONFIG.graphqlURL,
suspense: false,
});