Files
twenty/front/src/testing/mockedClient.ts
Félix Malfait b028d9fd2a Add deploy buttons and clean environment variables (#974)
* add render.yaml

* Clean environment variables



---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2023-07-31 14:36:04 -07:00

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(),
});