UNPKG

create-bar-project

Version:

This module helps create a base for web application projects.

14 lines (11 loc) 359 B
import { ApolloClient } from '@apollo/client'; import { getToken } from 'Common/Utils/Cookies'; import cache from './Cache'; import { resolvers } from './Resolvers'; const client = new ApolloClient({ uri: process.env.REACT_APP_SERVER_API_URL, headers: { Authorization: `Bearer ${getToken()}` }, cache, resolvers, }); export default client;