Browse Source

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

read IMAGE_DRIVER from env ('gd' or 'imagick')
daniel 5 years ago
parent
commit
d013f55e25
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/image.php

+ 1 - 1
config/image.php

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