mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

* force app timezone to be UTC * remove asDateTime overwrite * add custom column to display dates in user timezone * use `APP_TIMEZONE` as default timezone for new users * revert accidental pinting
17 lines
265 B
PHP
17 lines
265 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'name' => env('APP_NAME', 'Pelican'),
|
|
'favicon' => env('APP_FAVICON', '/pelican.ico'),
|
|
|
|
'version' => 'canary',
|
|
|
|
'timezone' => 'UTC',
|
|
|
|
'exceptions' => [
|
|
'report_all' => env('APP_REPORT_ALL_EXCEPTIONS', false),
|
|
],
|
|
|
|
];
|