如何在 Ghost 的 .env 文件中指定数组?

How do I specify arrays in .env files for Ghost?

如何为 Ghost 的 .env 文件指定数组值?

我正在使用 .env file to configure Ghost. Per 我在我的 .env 中设置了一行,上面写着:

logging__transports="file,stdout"

但是 Ghost 失败了:

TypeError: this.transports.splice is not a function

如何在 Ghost 的 .env 文件中指定数组?

幽灵now supports this:

logging__transports='["file", "stdout"]'