mirror of
https://github.com/strapi/strapi.git
synced 2025-07-07 17:12:33 +00:00
17 lines
240 B
JavaScript
17 lines
240 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = ({ env }) => ({
|
|
graphql: {
|
|
enabled: true,
|
|
config: {
|
|
amountLimit: 50,
|
|
depthLimit: 10,
|
|
apolloServer: {
|
|
tracing: true,
|
|
},
|
|
},
|
|
},
|
|
});
|