mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 00:44:32 +01:00
13 lines
270 B
PHP
13 lines
270 B
PHP
<?php
|
|
|
|
// using same lib path and cache path specified in /min/config.php
|
|
|
|
require dirname(__FILE__) . '/../min/config.php';
|
|
|
|
require "$min_libPath/Minify/Loader.php";
|
|
Minify_Loader::register();
|
|
|
|
$minifyCachePath = isset($min_cachePath)
|
|
? $min_cachePath
|
|
: '';
|