Optimization
Enso uses Spatie Image Optimizer for optimizing images, though this is disabled by default until we're happy that it is stable.
You will need to install the appropriate packages in your OS in order for it to perform the optimizations.
If you're on laravel 5.4 you will need to add this to your config/app.php providers:
Spatie\LaravelImageOptimizer\ImageOptimizerServiceProvider::class,
Enabling
You can enable image optimisation from your .env file.
ENSO_OPTIMIZE_IMAGES=true
Or by editing config/enso/media.php which by default looks like this.
'optimize_images' => env('ENSO_OPTIMIZE_IMAGES', false),