Glide image width
Hi
i have this config to use glide
In frontend every image have this params
https://www.mydomain.local/img/a7ce835c-97ce-4ed5-b2e5-218693a151c0/bioalleva-banner1.png?fm=png&q=100&auto=compress%2Cformat&fit=crop&w=1000&crop=1640%2C510%2C0%2C0
I need to change min width from 1000 to 1600
How can i do it?
adding 'w' => '1600' it doesn't work
i have this config to use glide
'glide' => [
'original_media_for_extensions' => ['svg'],
'default_params' => [
'fm' => 'png',
'q' => '90',
'auto' => 'compress,format',
'fit' => 'min',
],
'lqip_default_params' => [
'fm' => 'webp',
'auto' => 'compress',
'blur' => 100,
'dpr' => 1,
],
],In frontend every image have this params
https://www.mydomain.local/img/a7ce835c-97ce-4ed5-b2e5-218693a151c0/bioalleva-banner1.png?fm=png&q=100&auto=compress%2Cformat&fit=crop&w=1000&crop=1640%2C510%2C0%2C0
I need to change min width from 1000 to 1600
How can i do it?
adding 'w' => '1600' it doesn't work
'default_params' => [
'fm' => 'png',
'q' => '90',
'auto' => 'compress,format',
'fit' => 'min',
'w' => '1600'
],