Merge pull request #1649 from pixelfed/trwnh-image-driver

read IMAGE_DRIVER from env ('gd' or 'imagick')
This commit is contained in:
daniel 2019-08-31 23:00:58 -06:00 committed by GitHub
commit d013f55e25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ return [
|
*/
'driver' => 'gd',
'driver' => env('IMAGE_DRIVER', 'gd'),
];