strapi-plugin-placeholder
Version:
Generate base64 placeholders for Strapi images
12 lines (9 loc) • 355 B
JavaScript
;
module.exports = ({ strapi }) => {
if (!strapi.plugin('upload'))
return strapi.log.warn("Upload plugin is not installed, Plaiceholder won't be started.");
/* Update the Media Library File content type, adding the placeholder field */
strapi.plugin('upload').contentTypes.file.attributes.placeholder = {
type: 'text',
};
};