feat: Exclude 'core-store.strapi_content_types_schema' by default (#87)
parent
97439432cc
commit
8f11f7eefd
|
@ -357,7 +357,8 @@ In the example below you can see how, and also what the default settings are.
|
||||||
excludedTypes: [],
|
excludedTypes: [],
|
||||||
excludedConfig: [
|
excludedConfig: [
|
||||||
"core-store.plugin_users-permissions_grant",
|
"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`
|
###### 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
|
## 🤝 Contributing
|
||||||
|
|
|
@ -11,6 +11,7 @@ module.exports = {
|
||||||
excludedConfig: [
|
excludedConfig: [
|
||||||
"core-store.plugin_users-permissions_grant",
|
"core-store.plugin_users-permissions_grant",
|
||||||
"core-store.plugin_upload_metrics",
|
"core-store.plugin_upload_metrics",
|
||||||
|
"core-store.strapi_content_types_schema",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
validator() {},
|
validator() {},
|
||||||
|
|
Loading…
Reference in New Issue