* add render.yaml * Clean environment variables --------- Co-authored-by: Charles Bochet <charles@twenty.com>
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { ApolloClient, InMemoryCache } from '@apollo/client';
|
|
|
|
export const mockedClient = new ApolloClient({
|
|
uri: process.env.REACT_APP_SERVER_BASE_URL + '/graphql',
|
|
cache: new InMemoryCache(),
|
|
});
|