mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 20:11:47 +00:00
24 lines
389 B
JavaScript
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,
|
|
},
|
|
},
|
|
});
|