diff --git a/config/filesystems.php b/config/filesystems.php index e9d9dbd..66c7c19 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -44,6 +44,12 @@ 'throw' => false, ], + 'tmp' => [ + 'driver' => 'local', + 'root' => env('AWS_USE_LAMBDA_STORAGE', true) ? '/tmp' : storage_path('app/temp'), + 'url' => env('AWS_USE_LAMBDA_STORAGE', true) ? '/tmp' : storage_path('app/temp'), + ], + 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'),