mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 08:52:50 +01:00
15 lines
292 B
PHP
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')
|
|
);
|
|
|
|
?>
|