gldtn
Well-known member
I was thinking of using the option to minify, but I'm a little lost on the direction and I wanted to make sure I'm doing it correctly before I apply..
Minify CSS
If true, CSS will be run through minify before being served.
So I checked the above option..
And applied the following cache mechanism into the config.php file:
	
	
	
		
And I also wanted to use Fetch public templates as files
Did I miss something?
Thanks!
				
			Minify CSS
If true, CSS will be run through minify before being served.
So I checked the above option..
And applied the following cache mechanism into the config.php file:
		Code:
	
	$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array(
    'caching'                  => true,
    'automatic_serialization'  => true,
    'lifetime'                  => 3600,
    'cache_id_prefix'          => 'cm_'
);
$config['cache']['backend'] = 'File';
	And I also wanted to use Fetch public templates as files
Did I miss something?
Thanks!