1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 19:33:07 +01:00
freescout/config/minify.config.php

85 lines
2.6 KiB
PHP
Raw Normal View History

2018-06-22 19:44:21 +02:00
<?php
2018-07-24 08:34:28 +02:00
return [
2018-06-22 19:44:21 +02:00
/*
|--------------------------------------------------------------------------
| Sort Direction
|--------------------------------------------------------------------------
|
| You can set the sort direction (ascending/descending) when
| minifying full directories.
|
*/
'reverse_sort' => true,
/*
|--------------------------------------------------------------------------
| App environments to not minify
|--------------------------------------------------------------------------
|
| These environments will not be minified and all individual files are
| returned
|
*/
2018-07-24 08:34:28 +02:00
'ignore_environments' => [
'local',
],
2018-06-22 19:44:21 +02:00
/*
|--------------------------------------------------------------------------
| CSS build path
|--------------------------------------------------------------------------
|
| Minify is an extension that can minify your css files into one build file.
| The css_builds_path property is the location where the builded files are
| stored. This is relative to your public path. Notice the trailing slash.
| Note that this directory must be writeable.
|
*/
'css_build_path' => '/css/builds/',
2019-06-15 16:52:34 +02:00
'css_url_path' => env('APP_URL').'/css/builds/',
2018-06-22 19:44:21 +02:00
/*
|--------------------------------------------------------------------------
| JS build path
|--------------------------------------------------------------------------
|
| Minify is an extension that can minify your js files into one build file.
| The js_build_path property is the location where the builded files are
| stored. This is relative to your public path. Notice the trailing slash.
| Note that this directory must be writeable.
|
*/
'js_build_path' => '/js/builds/',
2019-06-15 16:52:34 +02:00
'js_url_path' => env('APP_URL').'/js/builds/',
2018-06-22 19:44:21 +02:00
2018-07-24 08:34:28 +02:00
/*
2018-06-22 19:44:21 +02:00
|--------------------------------------------------------------------------
| Hash modification
|--------------------------------------------------------------------------
|
| You can disable usage of modification time (mtime) for hash build and
2018-07-24 08:34:28 +02:00
| add additional salt (exp. commit hash) for hash build
2018-06-22 19:44:21 +02:00
|
*/
'disable_mtime' => false,
2018-07-24 08:34:28 +02:00
'hash_salt' => '',
2018-06-22 19:44:21 +02:00
2018-07-24 08:34:28 +02:00
/*
2018-06-22 19:44:21 +02:00
|--------------------------------------------------------------------------
| Base URL
|--------------------------------------------------------------------------
|
| You can set the base URL for the links generated with the configuration
| value. By default if empty HTTP_HOST would be used.
|
*/
2018-07-24 08:34:28 +02:00
'base_url' => '',
];