mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 09:33:26 +00:00
14 lines
234 B
JavaScript
14 lines
234 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = ({ env }) => ({
|
|
graphql: {
|
|
enabled: true,
|
|
config: require('./plugins/graphql')({ env }),
|
|
},
|
|
i18n: {
|
|
config: require('./plugins/i18n')({ env }),
|
|
},
|
|
});
|