Skip to content

Commit 8f11f7e

Browse files
committed
feat: Exclude 'core-store.strapi_content_types_schema' by default (#87)
1 parent 9743943 commit 8f11f7e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ In the example below you can see how, and also what the default settings are.
357357
excludedTypes: [],
358358
excludedConfig: [
359359
"core-store.plugin_users-permissions_grant",
360-
"core-store.plugin_upload_metrics"
360+
"core-store.plugin_upload_metrics",
361+
"core-store.strapi_content_types_schema",
361362
],
362363
},
363364
},
@@ -424,7 +425,7 @@ Specify the names of configs you want to exclude from the syncing process. By de
424425

425426
###### Key: `excludedConfig`
426427

427-
> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics']`
428+
> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics', 'core-store.strapi_content_types_schema']`
428429
429430

430431
## 🤝 Contributing

server/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module.exports = {
1111
excludedConfig: [
1212
"core-store.plugin_users-permissions_grant",
1313
"core-store.plugin_upload_metrics",
14+
"core-store.strapi_content_types_schema",
1415
],
1516
},
1617
validator() {},

0 commit comments

Comments
 (0)