mirror of
https://github.com/ComfortablyCoding/strapi-plugin-slugify.git
synced 2025-12-21 00:01:49 -05:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
'use strict';
|
|
|
|
const schema = require('./schema');
|
|
|
|
module.exports = {
|
|
default: () => ({
|
|
contentTypes: {},
|
|
slugifyOptions: {},
|
|
slugifyWithCount: false,
|
|
shouldUpdateSlug: false,
|
|
skipUndefinedReferences: false,
|
|
}),
|
|
validator: (config) => schema.validateSync(config),
|
|
};
|