mirror of
https://github.com/mrclay/minify.git
synced 2025-02-23 08:25:12 +01:00
16 lines
393 B
PHP
16 lines
393 B
PHP
<?php
|
|
|
|
// using same lib path and cache path specified in /min/config.php
|
|
|
|
require dirname(__FILE__) . '/../min/config.php';
|
|
|
|
if (!isset($min_libPath)) {
|
|
// default lib path is inside min
|
|
$min_libPath = dirname(__FILE__) . '/../min/lib';
|
|
}
|
|
set_include_path($min_libPath . PATH_SEPARATOR . get_include_path());
|
|
|
|
$minifyCachePath = isset($min_cachePath)
|
|
? $min_cachePath
|
|
: '';
|