mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
5f915c86ea
* feat: support streaming from local filesystems * style: fix StyleCI findings
19 lines
421 B
PHP
19 lines
421 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Image Disk
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The filesystem disk where images are hosted. By default, it is assumed
|
|
| that images are hosted in an S3-like bucket.
|
|
|
|
|
*/
|
|
|
|
'disk' => env('IMAGE_DISK', 'images'),
|
|
];
|