Просмотр исходного кода

docs: Correct devMode property in Stellate configuration example (#2647)

FL 2 лет назад
Родитель
Сommit
ef91835e40
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/docs/reference/core-plugins/stellate-plugin/index.md

+ 1 - 1
docs/docs/reference/core-plugins/stellate-plugin/index.md

@@ -52,7 +52,7 @@ export const config: VendureConfig = {
            serviceName: 'my-service',
            // The API token for the Stellate Purging API. See the "pre-requisites" section above.
            apiToken: process.env.STELLATE_PURGE_API_TOKEN,
-           debugMode: !isProd || process.env.STELLATE_DEBUG_MODE ? true : false,
+           devMode: !isProd || process.env.STELLATE_DEBUG_MODE ? true : false,
            debugLogging: process.env.STELLATE_DEBUG_MODE ? true : false,
            purgeRules: [
                ...defaultPurgeRules,