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

View File

@@ -0,0 +1,10 @@
import { Config } from '../types';
export default {
default: () => ({ contentVersionLimit: 50 }),
validator: (config: Config) => {
if (typeof config.contentVersionLimit !== 'number') {
throw new Error('contentVersionLimit has to be a boolean');
}
},
};