mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
12 lines
238 B
PHP
12 lines
238 B
PHP
<?php
|
|
|
|
return [
|
|
'version' => '2.0.0-a.1',
|
|
|
|
'is_demo' => env('APP_DEMO', false),
|
|
|
|
// Define size of chunk uploaded by MB.
|
|
// E.g. integer 128 means chunk size will be 128MB.
|
|
'chunk_size' => env('CHUNK_SIZE', '128'),
|
|
];
|