mirror of
https://github.com/mrclay/minify.git
synced 2025-08-29 16:49:47 +02:00
Reorganization of "web" to "min_extras"
This commit is contained in:
17
min_extras/config.php
Normal file
17
min_extras/config.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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__) . '/../min/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 = 'C:/xampp/tmp'; // '';
|
||||
|
Reference in New Issue
Block a user