misc_pterodactyl-panel/config/themes.php

17 lines
375 B
PHP
Raw Normal View History

2016-02-04 23:28:14 +00:00
<?php
return [
'enabled' => true,
2016-02-06 04:27:43 +00:00
'themes_path' => realpath(base_path('resources/themes')),
2016-02-04 23:28:14 +00:00
'asset_not_found' => 'LOG_ERROR',
2016-02-06 21:24:08 +00:00
'active' => ENV('APP_THEME', 'default'),
2016-02-04 23:28:14 +00:00
'themes' => [
'default' => [
'extends' => null,
'views-path' => 'default',
'asset-path' => 'themes/default',
],
],
2016-02-06 04:27:43 +00:00
];