UNPKG

strapi-plugin-local-image-sharp

Version:

Dynamically resize, format and optimize images based on url modifiers

14 lines (10 loc) 242 B
'use strict'; const yup = require('yup'); const pluginConfigSchema = yup.object().shape({ cacheDir: yup.string(), maxAge: yup.number().moreThan(0), paths: yup.array().of(yup.string()), }); module.exports = { pluginConfigSchema, };