mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 05:00:49 +08:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Dark mode
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By enabling this setting, your notifications will be ready for Tailwind's
|
|
| Dark Mode feature.
|
|
|
|
|
| https://tailwindcss.com/docs/dark-mode
|
|
|
|
|
*/
|
|
|
|
'dark_mode' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Database notifications
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By enabling this feature, your users are able to open a slide-over within
|
|
| the app to view their database notifications.
|
|
|
|
|
*/
|
|
|
|
'database' => [
|
|
'enabled' => false,
|
|
'trigger' => null,
|
|
'polling_interval' => '30s',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Layout
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the configuration for the general layout of notifications.
|
|
|
|
|
*/
|
|
|
|
'layout' => [
|
|
'alignment' => [
|
|
'horizontal' => 'right',
|
|
'vertical' => 'top',
|
|
],
|
|
],
|
|
|
|
];
|