mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-02-20 10:49:24 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Processing assets
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Flags for processing actions
|
|
|
|
|
*/
|
|
|
|
$config['assets']['minify_css'] = true;
|
|
$config['assets']['minify_js'] = true;
|
|
$config['assets']['enable_less'] = true;
|
|
$config['assets']['enable_coffeescript'] = true;
|
|
$config['assets']['freeze'] = false;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cache
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Define if the cache folder should be cleared when generating new cache files
|
|
|
|
|
*/
|
|
|
|
$config['assets']['auto_clear_cache'] = true;
|
|
$config['assets']['auto_clear_css_cache'] = true;
|
|
$config['assets']['auto_clear_js_cache'] = true;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default paths and directories, tags
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Leave the base_url at null on default
|
|
| Default directories containing the assets
|
|
| Option to use HTML5 tags
|
|
|
|
|
*/
|
|
|
|
$config['assets']['base_url'] = null;
|
|
$config['assets']['assets_dir'] = 'assets';
|
|
$config['assets']['js_dir'] = 'js';
|
|
$config['assets']['css_dir'] = 'css';
|
|
$config['assets']['cache_dir'] = 'cache';
|
|
$config['assets']['img_dir'] = 'img';
|
|
$config['assets']['html5'] = true;
|