23 lines
356 B
Markdown
23 lines
356 B
Markdown
# 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
|
|
}
|
|
}
|
|
});
|
|
```
|