forked from TurbineCSS/Turbine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
executable file
·36 lines (23 loc) · 909 Bytes
/
config.php
File metadata and controls
executable file
·36 lines (23 loc) · 909 Bytes
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
31
32
33
34
35
<?php
/**
* This file is part of Turbine
* http://github.com/SirPepe/Turbine
*
* Copyright Peter Kröner
* Licensed under GNU LGPL 3, see license.txt or http://www.gnu.org/licenses/
*/
$config = array(
// Sets debugging off (0), on (1), or in developer mode (2)
// Mode 0 hides all error messages
// Mode 1 displays error messages related to the style sheets (like elements trying to inherit properties that don't exist)
// Mode 2 additionally displays php developer messages and sets error_reporting to E_ALL
'debug_level' => 0,
// Base path to cssp and css files relative to css.php
'css_base_dir' => '../css',
// where to place cache files
'cache_dir' => '../cache/turbine',
// Minify regular css files (true) oder include them completely unchanged (false)
'minify_css' => false,
// Set expire header expire_in_future seconds after the request
'expire_in_future' => 3600
);