mirror of
https://github.com/mrclay/minify.git
synced 2025-02-25 09:22:41 +01:00
Minify: fixed default value in useServerCache(), + doc for 'contentType' serve() option Minify_Controller_Base: added todo item Minify_Controller_Version1: fixed default cache to '' (instead of null)
11 lines
287 B
PHP
11 lines
287 B
PHP
<?php
|
|
/**
|
|
* Groups configuration for default Minify implementation
|
|
* @package Minify
|
|
*/
|
|
|
|
return array(
|
|
// 'js' => array('//js/file1.js', '//js/file2.js'),
|
|
// 'css' => array('//css/file1.css', '//css/file2.css'),
|
|
'js' => array('//js/Class.js', '//js/email.js')
|
|
); |