28 lines
810 B
PHP
28 lines
810 B
PHP
<?php defined('BASEPATH') || exit('No direct script access allowed');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Asset storage
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The path to where the assets are stored, WITH trailing slash.
|
|
|
|
|
*/
|
|
$config['assets_folder'] = 'assets/';
|
|
$config['cache_folder'] = $config['assets_folder'] . 'cache/';
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Toggle CSSTidy/JSMin compression
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Whether to run compression using CSSTidy or JSMin.
|
|
|
|
|
*/
|
|
$config['enable_csstidy'] = true;
|
|
$config['enable_jsmin'] = true;
|
|
|
|
|
|
/* End of file assets.php */
|
|
/* Location: ./application/config/assets.php */
|