mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-12 23:14:57 -05:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { createClient } from 'urql';
|
|
|
|
import { CONFIG } from '../config';
|
|
|
|
console.info(`Client URI: ${CONFIG.graphqlURL}`)
|
|
|
|
export const client = createClient({
|
|
url: CONFIG.graphqlURL,
|
|
suspense: false,
|
|
});
|