mirror of
https://github.com/strapi/strapi.git
synced 2025-07-09 18:13:00 +00:00
11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = ({ env }) => ({
|
|
graphql: {
|
|
enabled: true,
|
|
resolve: path.resolve('./plugins/myplugin'),
|
|
},
|
|
});
|