strapi-plugin-cdn-prefix
Version:
Prepend image urls with CDN Prefix
15 lines (12 loc) • 343 B
JavaScript
;
module.exports = ({ strapi }) => {
const plugin = strapi.plugin("cdn-prefix").service("service");
strapi.db.lifecycles.subscribe({
afterFindOne(event) {
event = plugin.replaceUploadsWithCdnFindOne(event);
},
afterFindMany(event) {
event = plugin.replaceUploadsWithCdnFindMany(event);
}
});
};