Hey there, I am using Kirby Version 3.9.3 with php 8.2 on an Apache Server. The problem I have is that the images on my Live Server are very blurred with really bad quality. I think the mistake is inside my config.
Maybe this Block?
'srcsets' => [
'default' => [
'480w' => ['width' => 480],
'800w' => ['width' => 800],
'1200w' => ['width' => 1200],
'1400w' => ['width' => 1400]
],
'avif' => [
'480w' => ['width' => 480, 'format' => 'avif'],
'800w' => ['width' => 800, 'format' => 'avif'],
'1200w' => ['width' => 1200, 'format' => 'avif'],
'1400w' => ['width' => 1400, 'format' => 'avif']
],
'webp' => [
'480w' => ['width' => 480, 'format' => 'webp'],
'800w' => ['width' => 800, 'format' => 'webp'],
'1200w' => ['width' => 1200, 'format' => 'webp'],
'1400w' => ['width' => 1400, 'format' => 'webp']
],
]
I really don’t have any other ideas why its not working, hope sombody can help me