1
0
mirror of https://github.com/mrclay/minify.git synced 2025-02-24 08:52:50 +01:00
minify/examples/config.php
2008-02-28 18:42:56 +00:00

15 lines
292 B
PHP

<?php
/**
* Set $minifyCachePath to a PHP-writeable path to enable server-side caching
* in all examples.
*/
$minifyCachePath = '';
// get lib in include path
ini_set('include_path',
dirname(__FILE__) . '/../lib'
. PATH_SEPARATOR . ini_get('include_path')
);
?>