1
0
mirror of https://github.com/mrclay/minify.git synced 2025-02-24 00:44:32 +01:00
minify/web/config.php
Steve Clay 041ea14cc4
2008-02-28 21:14:06 +00:00

18 lines
427 B
PHP

<?php
/**
* Add the location of Minify's "lib" directory to the include_path. In
* production this could be done via .htaccess or some other method.
*/
ini_set('include_path',
dirname(__FILE__) . '/../lib'
. PATH_SEPARATOR . ini_get('include_path')
);
/**
* Set $minifyCachePath to a PHP-writeable path to enable server-side caching
* in all examples and tests.
*/
$minifyCachePath = '';
?>