From 8f11f7eefd03faf09500ee9b899f7bd99c1034e4 Mon Sep 17 00:00:00 2001 From: boazpoolman Date: Wed, 15 Feb 2023 19:22:09 +0100 Subject: [PATCH] feat: Exclude 'core-store.strapi_content_types_schema' by default (#87) --- README.md | 5 +++-- server/config.js | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a71346..eb918ba 100644 --- a/README.md +++ b/README.md @@ -357,7 +357,8 @@ In the example below you can see how, and also what the default settings are. excludedTypes: [], excludedConfig: [ "core-store.plugin_users-permissions_grant", - "core-store.plugin_upload_metrics" + "core-store.plugin_upload_metrics", + "core-store.strapi_content_types_schema", ], }, }, @@ -424,7 +425,7 @@ Specify the names of configs you want to exclude from the syncing process. By de ###### Key: `excludedConfig` -> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics']` +> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics', 'core-store.strapi_content_types_schema']` ## 🤝 Contributing diff --git a/server/config.js b/server/config.js index 860c13f..ba1d904 100644 --- a/server/config.js +++ b/server/config.js @@ -11,6 +11,7 @@ module.exports = { excludedConfig: [ "core-store.plugin_users-permissions_grant", "core-store.plugin_upload_metrics", + "core-store.strapi_content_types_schema", ], }, validator() {},