14 lines
642 B
PHP
14 lines
642 B
PHP
<?php
|
|
|
|
/**
|
|
* The config file is optional. It accepts a return array with config options
|
|
* Note: Never include more than one return statement, all options go within this single return array
|
|
* In this example, we set debugging to true, so that errors are displayed onscreen.
|
|
* This setting must be set to false in production.
|
|
* All config options: https://getkirby.com/docs/reference/system/options
|
|
*/
|
|
return [
|
|
'debug' => true,
|
|
'yaml.handler' => 'symfony', // already makes use of the more modern Symfony YAML parser: https://getkirby.com/docs/reference/system/options/yaml (will become the default in a future Kirby version)
|
|
];
|