This commit is contained in:
Salam-vsem
2025-05-24 19:02:39 +03:00
commit 2b72f5407b
52 changed files with 1457 additions and 0 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
# content-versioning
saves versions of configured collections
# Configuration
## contentVersionLimit
sets limit of saved versions per one collection. Default value = 50
```
// Strapi app configuration
// config/plugin.ts
export default () => ({
'content-versioning': {
config: {
contentVersionLimit: 3 // your own limit
}
}
});
```