mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 17:10:08 +00:00
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = ({ env }) => ({
|
|
graphql: {
|
|
enabled: true,
|
|
// resolve: '@strapi/plugin-graphql',
|
|
config: require('./plugins/graphql')({ env }),
|
|
},
|
|
i18n: {
|
|
config: require('./plugins/i18n')({ env }),
|
|
},
|
|
});
|