mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 01:21:30 +03:00
b028d9fd2a
* add render.yaml * Clean environment variables --------- Co-authored-by: Charles Bochet <charles@twenty.com>
24 lines
525 B
JavaScript
24 lines
525 B
JavaScript
module.exports = {
|
|
schema: process.env.REACT_APP_SERVER_BASE_URL + "/graphql",
|
|
documents: ['./src/**/*.tsx', './src/**/*.ts'],
|
|
overwrite: true,
|
|
generates: {
|
|
'./src/generated/graphql.tsx': {
|
|
plugins: [
|
|
'typescript',
|
|
'typescript-operations',
|
|
'typescript-react-apollo',
|
|
],
|
|
config: {
|
|
skipTypename: false,
|
|
withHooks: true,
|
|
withHOC: false,
|
|
withComponent: false,
|
|
scalars: {
|
|
DateTime: 'string',
|
|
}
|
|
},
|
|
},
|
|
},
|
|
};
|