如何在生产模式下禁用strapi graphql playground



我已经将这段代码添加到./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,
};

我也改变了' playgroundAlways '值如下:
playgroundAlways:false

但是我可以看到graphql playground处于开发和生产模式。
如何隐藏或禁用graphql playground?

如何定义启动应用程序脚本?是否设置NODE_ENV=生产?

重新检查设置断点或console.logprocess.env变量,以查看在运行时得到的结果。

相关内容

  • 没有找到相关文章

最新更新