Add theme key in ENV
This commit is contained in:
parent
3fe74b412d
commit
e737b866d5
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
APP_ENV=production
|
APP_ENV=production
|
||||||
APP_DEBUG=false
|
APP_DEBUG=false
|
||||||
APP_KEY=SomeRandomString3232RandomString
|
APP_KEY=SomeRandomString3232RandomString
|
||||||
|
APP_THEME=default
|
||||||
|
|
||||||
DB_HOST=localhost
|
DB_HOST=localhost
|
||||||
DB_PORT=3306
|
DB_PORT=3306
|
||||||
|
|
|
@ -4,7 +4,7 @@ return [
|
||||||
'enabled' => true,
|
'enabled' => true,
|
||||||
'themes_path' => realpath(base_path('resources/themes')),
|
'themes_path' => realpath(base_path('resources/themes')),
|
||||||
'asset_not_found' => 'LOG_ERROR',
|
'asset_not_found' => 'LOG_ERROR',
|
||||||
'active' => 'default',
|
'active' => ENV('APP_THEME', 'default'),
|
||||||
|
|
||||||
'themes' => [
|
'themes' => [
|
||||||
'default' => [
|
'default' => [
|
||||||
|
|
Loading…
Reference in a new issue