mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
64 lines
1.3 KiB
PHP
64 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'version' => '2.0.9',
|
|
|
|
'is_demo' => env('APP_DEMO', false),
|
|
|
|
'is_setup_wizard_demo' => env('IS_SETUP_WIZARD_DEMO', false),
|
|
'is_setup_wizard_debug' => env('IS_SETUP_WIZARD_DEBUG', false),
|
|
'is_admin_vuefilemanager_bar' => env('IS_ADMIN_VUEFILEMANAGER_BAR', true),
|
|
|
|
// Define size of chunk uploaded by MB.
|
|
// E.g. integer 128 means chunk size will be 128 MB.
|
|
'chunk_size' => env('CHUNK_SIZE', '128'),
|
|
|
|
'colors' => [
|
|
'#9ad2bf',
|
|
'#9ad2cd',
|
|
'#d29a9a',
|
|
'#d2ce9a',
|
|
'#9aadd2',
|
|
'#c59ad2',
|
|
],
|
|
|
|
'avatar_sizes' => [
|
|
[
|
|
'size' => 160,
|
|
'name' => 'md',
|
|
],
|
|
[
|
|
'size' => 60,
|
|
'name' => 'sm',
|
|
],
|
|
[
|
|
'size' => 42,
|
|
'name' => 'xs',
|
|
],
|
|
],
|
|
|
|
'image_sizes' => [
|
|
'immediately' => [
|
|
[
|
|
'size' => 120,
|
|
'name' => 'xs',
|
|
],
|
|
[
|
|
'size' => 240,
|
|
'name' => 'sm',
|
|
],
|
|
],
|
|
|
|
'later' => [
|
|
[
|
|
'size' => 960,
|
|
'name' => 'lg',
|
|
],
|
|
[
|
|
'size' => 1440,
|
|
'name' => 'xl',
|
|
],
|
|
],
|
|
],
|
|
];
|