2021-09-15 16:41:36 +02:00

24 lines
389 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: `./src/plugins/myplugin`, // From the root of the project
config: {
testConf: 3,
},
},
});