47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'class_namespace' => 'App\\Livewire',
|
|
|
|
'view_path' => resource_path('views/livewire'),
|
|
|
|
'layout' => 'components.layouts.app',
|
|
|
|
'lazy_placeholder' => null,
|
|
|
|
'temporary_file_upload' => [
|
|
'disk' => null,
|
|
'rules' => ['required', 'file', 'max:256000'],
|
|
'directory' => null,
|
|
'middleware' => null,
|
|
'preview_mimes' => [
|
|
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
|
|
'mov', 'avi', 'wmv', 'mp3', 'm4a',
|
|
'jpg', 'jpeg', 'mpga', 'webp', 'wma',
|
|
],
|
|
'max_upload_time' => 15,
|
|
'cleanup' => true,
|
|
],
|
|
|
|
'render_on_redirect' => false,
|
|
|
|
'legacy_model_binding' => false,
|
|
|
|
'inject_assets' => true,
|
|
|
|
'navigate' => [
|
|
'show_progress_bar' => true,
|
|
'progress_bar_color' => '#2299dd',
|
|
],
|
|
|
|
'inject_morph_markers' => true,
|
|
|
|
'smart_wire_keys' => false,
|
|
|
|
'pagination_theme' => 'tailwind',
|
|
|
|
'release_token' => env('APP_VERSION'),
|
|
|
|
'inject_assets_after_styles' => false,
|
|
]; |