1
0
mirror of https://github.com/mrclay/minify.git synced 2025-02-24 00:44:32 +01:00
minify/examples/config.php

15 lines
292 B
PHP
Raw Normal View History

2008-02-28 18:42:56 +00:00
<?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')
);
?>