13 lines
338 B
PHP
13 lines
338 B
PHP
|
<?php
|
||
|
return [
|
||
|
'settings' => [
|
||
|
'displayErrorDetails' => true, // set to false in production
|
||
|
'addContentLengthHeader' => false, // Allow the web server to send the content-length header
|
||
|
|
||
|
// Renderer settings
|
||
|
'renderer' => [
|
||
|
'template_path' => __DIR__ . '/../templates/',
|
||
|
]
|
||
|
],
|
||
|
];
|