blob: a4429ae6889e67c48e6119e5a3f113868bdd276c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* Default development config file for UserFrosting. Sets up UserFrosting for easier development.
*
*/
return [
'assets' => [
'use_raw' => TRUE
],
'cache' => [
'twig' => FALSE
],
'debug' => [
'twig' => TRUE,
'auth' => TRUE,
'smtp' => TRUE
],
// Slim settings - see http://www.slimframework.com/docs/objects/application.html#slim-default-settings
'settings' => [
'displayErrorDetails' => TRUE
],
'site' => [
'debug' => [
'ajax' => TRUE,
'info' => TRUE
]
]
];
|