++ fix: Rientro assegnazione e territorio
This commit is contained in:
47
config/livewire.php
Normal file
47
config/livewire.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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,
|
||||
];
|
||||
Reference in New Issue
Block a user