nystudio107 /
craft-minify
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Minify plugin for Craft CMS |
||
| 4 | * |
||
| 5 | * @link https://nystudio107.com/ |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 6 | * @copyright Copyright (c) nystudio107 |
||
|
0 ignored issues
–
show
|
|||
| 7 | * @license MIT License https://opensource.org/licenses/MIT |
||
| 8 | */ |
||
|
0 ignored issues
–
show
|
|||
| 9 | |||
| 10 | /** |
||
| 11 | * Minify config.php |
||
| 12 | * |
||
| 13 | * This file exists only as a template for the Minify settings. |
||
| 14 | * It does nothing on its own. |
||
| 15 | * |
||
| 16 | * Don't edit this file, instead copy it to 'craft/config' as 'minify.php' |
||
| 17 | * and make your changes there to override default settings. |
||
| 18 | * |
||
| 19 | * Once copied to 'craft/config', this file will be multi-environment aware as |
||
| 20 | * well, so you can have different settings groups for each environment, just as |
||
| 21 | * you do for 'general.php' |
||
| 22 | */ |
||
| 23 | |||
| 24 | return [ |
||
| 25 | |||
| 26 | // if set to `true` then Minify will not minify anything |
||
| 27 | "disableTemplateMinifying" => false, |
||
| 28 | |||
| 29 | // if set to `true` then Minify will not minify anything if `devMode` is enabled |
||
| 30 | "disableDevModeMinifying" => true, |
||
| 31 | |||
| 32 | ]; |
||
| 33 |