25 lines
381 B
JavaScript
Raw Normal View History

2021-05-31 18:28:42 +02:00
'use strict';
module.exports = () => ({
graphql: {
2021-05-31 18:28:42 +02:00
enabled: true,
2021-08-17 19:28:10 +02:00
config: {
endpoint: '/graphql',
defaultLimit: 25,
maxLimit: 100,
2021-08-17 19:28:10 +02:00
apolloServer: {
tracing: true,
},
},
},
2021-09-01 18:38:40 +02:00
myplugin: {
enabled: true,
resolve: `./src/plugins/myplugin`, // From the root of the project
2021-09-01 18:38:40 +02:00
config: {
testConf: 3,
},
},
});