mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 05:25:15 -05:00
* Create "me" view for logged in user * Implement user auth on web * Fix type errors * Setup static regeneration * Disable next export * Address PR feedback
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { createClient } from 'urql';
|
|
|
|
import { CONFIG } from '../config';
|
|
|
|
export const client = createClient({
|
|
url: CONFIG.graphqlURL,
|
|
suspense: false,
|
|
});
|