mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 03:51:54 +00:00

* feat: add vite * fix: CheckPagePermissions was buggy * fix: vite CJS warning & double print of experimental message * chore: move to use plugins-workspace folder * chore: update deps --------- Co-authored-by: Paul <45032974+hide-me@users.noreply.github.com>
32 lines
479 B
JavaScript
32 lines
479 B
JavaScript
'use strict';
|
|
|
|
module.exports = () => ({
|
|
graphql: {
|
|
enabled: true,
|
|
config: {
|
|
endpoint: '/graphql',
|
|
|
|
defaultLimit: 25,
|
|
maxLimit: 100,
|
|
|
|
apolloServer: {
|
|
tracing: true,
|
|
},
|
|
},
|
|
},
|
|
documentation: {
|
|
config: {
|
|
info: {
|
|
version: '1.0.0',
|
|
},
|
|
},
|
|
},
|
|
myplugin: {
|
|
enabled: true,
|
|
resolve: `./src/plugins/local-plugin`, // From the root of the project
|
|
config: {
|
|
testConf: 3,
|
|
},
|
|
},
|
|
});
|