mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
102 lines
3.3 KiB
PHP
102 lines
3.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Broadcasting
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By uncommenting the Laravel Echo configuration, you may connect Filament
|
|
| to any Pusher-compatible websockets server.
|
|
|
|
|
| This will allow your users to receive real-time notifications.
|
|
|
|
|
*/
|
|
|
|
'broadcasting' => [
|
|
|
|
// 'echo' => [
|
|
// 'broadcaster' => 'pusher',
|
|
// 'key' => env('VITE_PUSHER_APP_KEY'),
|
|
// 'cluster' => env('VITE_PUSHER_APP_CLUSTER'),
|
|
// 'wsHost' => env('VITE_PUSHER_HOST'),
|
|
// 'wsPort' => env('VITE_PUSHER_PORT'),
|
|
// 'wssPort' => env('VITE_PUSHER_PORT'),
|
|
// 'authEndpoint' => '/api/v1/broadcasting/auth',
|
|
// 'disableStats' => true,
|
|
// 'encrypted' => true,
|
|
// ],
|
|
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Filament Domain Name
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This value is the "domain name" associated with your application. This
|
|
| can be used to prevent Filament's internal routes from being registered
|
|
| on subdomains which do not need access to your admin application.
|
|
|
|
|
*/
|
|
'domain' => env('FILAMENT_URL'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Filament Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the URI path where Filament will be accessible from. Feel free to
|
|
| change this path to anything you like. Note that this URI will not
|
|
| affect Filament's internal API routes which aren't exposed to users.
|
|
|
|
|
*/
|
|
|
|
'path' => env('FILAMENT_PATH'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Filesystem Disk
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the storage disk Filament will use to put media. You may use any
|
|
| of the disks defined in the `config/filesystems.php`.
|
|
|
|
|
*/
|
|
|
|
'default_filesystem_disk' => env('FILAMENT_FILESYSTEM_DISK', 'public'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Assets Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the directory where Filament's assets will be published to. It
|
|
| is relative to the `public` directory of your Laravel application.
|
|
|
|
|
| After changing the path, you should run `php artisan filament:assets`.
|
|
|
|
|
*/
|
|
|
|
'assets_path' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Livewire Loading Delay
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This sets the delay before loading indicators appear.
|
|
|
|
|
| Setting this to 'none' makes indicators appear immediately, which can be
|
|
| desirable for high-latency connections. Setting it to 'default' applies
|
|
| Livewire's standard 200ms delay.
|
|
|
|
|
*/
|
|
|
|
'livewire_loading_delay' => 'default',
|
|
|
|
];
|