formatting
This commit is contained in:
parent
550282b094
commit
91dd1f61cd
|
@ -35,14 +35,15 @@
|
|||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Check Compiled Views
|
||||
| Blade View Modification Checking
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| On every request the framework will check to see if a view has expired
|
||||
| to determine if it needs to be recompiled. If you are in production
|
||||
| and precompiling your views we can skip this check to save time.
|
||||
| and precompiling views this feature may be disabled to save time.
|
||||
|
|
||||
*/
|
||||
'expires' => env('APP_ENV') !== 'production',
|
||||
|
||||
'expires' => env('VIEW_CHECK_EXPIRATION', true),
|
||||
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue