2024-03-07 21:12:36 +01:00

34 lines
513 B
JavaScript

'use strict';
module.exports = () => ({
graphql: {
enabled: true,
config: {
endpoint: '/graphql',
defaultLimit: 25,
maxLimit: 100,
apolloServer: {
tracing: true,
},
v4CompatibilityMode: true,
},
},
documentation: {
config: {
info: {
version: '1.0.0',
},
},
},
myplugin: {
enabled: true,
resolve: `./src/plugins/local-plugin`, // From the root of the project
config: {
testConf: 3,
},
},
});