aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/core/config/dev.php
blob: 63aeeab712abfafed912dcb5fb674cf91bbc79ed (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
        ]
    ]
];