UNPKG

strapi-plugin-website-builder

Version:

A plugin for Strapi Headless CMS that provides the ability to trigger website builds manually, periodically or through model events.

13 lines (10 loc) 231 B
'use strict'; const { pluginConfigSchema } = require('./schema.js'); module.exports = { default: () => ({ shared: {}, builds: [], hooks: {}, }), validator: async (config) => await pluginConfigSchema.validate(config), };