]> git.r.bdr.sh - rbdr/forum/blame - src/lib/config/apollo.ts
Use tailwind in app html
[rbdr/forum] / src / lib / config / apollo.ts
CommitLineData
58f7d521
RBR
1import fetch from 'cross-fetch';
2import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client/core';
c1bc5993
RBR
3import { apollo as apolloConfig } from './config';
4
5const cache = new InMemoryCache();
6
7export const client = new ApolloClient({
cac85db0
RBR
8 cache,
9 link: new HttpLink({
10 uri: apolloConfig.uri,
11 fetch
12 }),
13 ...apolloConfig
c1bc5993 14});