A BlobProvider for ImageFlow.Server to resize images from EPiServer/Optimizely
$ dotnet add package Alsterverse.Imageflow.Optimizelyusing Alsterverse.Imageflow.Optimizely; to the top of your statup.csservices.AddImageflowOptimizelyBlobService(); to your startup.csBy default the following path prefixes are configured for Imageflow to take action on:
/episerver/cms/globalassets//globalassets//episerver/cms/siteassets//siteassets//episerver/cms/contentassets//contentassets/You can change these using the option parameter:
services.AddImageflowOptimizelyBlobService(options => {
options.Prefixes = new[]{ "/globalassets/" }
});