I've added this snippet into ./config/plugins.js
module.exports = {
graphql: {
enabled: true,
config: {
endpoint: "/graphql",
shadowCRUD: true,
playgroundAlways: process.env.NODE_ENV === "development",
depthLimit: 50,
amountLimit: 100,
defaultLimit: 100,
maxLimit: 100,
apolloServer: {
tracing: true,
},
},
},
ckeditor: true,
};
I also have changed `playgroundAlways` value like this:
playgroundAlways:false
But I can see graphql playground in development and production mode.
How can I hide or disable graphql playground?