16 lines
234 B
TypeScript
16 lines
234 B
TypeScript
import type { GlobalConfig } from 'payload'
|
|
|
|
export const MaxVersions: GlobalConfig = {
|
|
slug: 'max-versions',
|
|
fields: [
|
|
{
|
|
name: 'title',
|
|
type: 'text',
|
|
},
|
|
],
|
|
versions: {
|
|
max: 2,
|
|
drafts: true,
|
|
},
|
|
}
|