26 lines
743 B
PHP
26 lines
743 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Active Theme
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| This setting defines the active theme for the CMS frontend.
|
||
|
|
| Themes are located in the /themes directory.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
'theme' => env('CMS_THEME', 'icehouse'),
|
||
|
|
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Admin Path
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| This setting defines the URL prefix for the admin section.
|
||
|
|
| It should be set in the .env file.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
'admin_path' => env('ADMIN_PATH', 'loom'),
|
||
|
|
];
|