fix: ensure default storage is local (#1840)

This commit is contained in:
Phan An 2024-10-06 22:57:25 +02:00 committed by GitHub
parent dd922b668a
commit de13776fbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
<?php
return [
'storage_driver' => env('STORAGE_DRIVER', 'local'),
'storage_driver' => env('STORAGE_DRIVER', 'local') ?: 'local',
'media_path' => env('MEDIA_PATH'),