2021-09-01 18:38:40 +02:00

24 lines
367 B
JavaScript

'use strict';
const path = require('path');
module.exports = ({ env }) => ({
graphql: {
enabled: true,
config: {
amountLimit: 50,
depthLimit: 10,
apolloServer: {
tracing: true,
},
},
},
myplugin: {
enabled: true,
resolve: `${__dirname}/../plugins/myplugin`,
config: {
testConf: 3,
},
},
});