kirby-fnord/site/config/config.php

47 lines
792 B
PHP

<?php
return [
'debug' => true,
'languages' => false,
'languages.detect' => false,
'thumbs' => [
'srcsets' => [
'default' => [300, 800, 1024, 1280, 1920, 3840],
'16to9' => [
'300w' => [
'width' => 300,
'height' => 169,
'crop' => 'center'
],
'800w' => [
'width' => 800,
'height' => 450,
'crop' => 'center'
],
'1024w' => [
'width' => 1024,
'height' => 576,
'crop' => 'center'
],
'1280w' => [
'width' => 1280,
'height' => 720,
'crop' => 'center'
],
'1920w' => [
'width' => 1920,
'height' => 1080,
'crop' => 'center'
],
'3840w' => [
'width' => 3840,
'height' => 2160,
'crop' => 'center'
]
]
]
],
'routes' => [
[]
]
];