Setup some stuff for config caching.
This commit is contained in:
parent
49cbb23ac5
commit
5ce23f1859
|
@ -15,9 +15,9 @@
|
||||||
|
|
||||||
'files' => [
|
'files' => [
|
||||||
|
|
||||||
__DIR__.'/../app/Providers/AppServiceProvider.php',
|
realpath(__DIR__.'/../app/Providers/AppServiceProvider.php'),
|
||||||
__DIR__.'/../app/Providers/EventServiceProvider.php',
|
realpath(__DIR__.'/../app/Providers/EventServiceProvider.php'),
|
||||||
__DIR__.'/../app/Providers/RouteServiceProvider.php',
|
realpath(__DIR__.'/../app/Providers/RouteServiceProvider.php'),
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'paths' => [base_path('resources/templates')],
|
'paths' => [
|
||||||
|
realpath(base_path('resources/templates'))
|
||||||
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -26,6 +28,6 @@
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'compiled' => storage_path().'/framework/views',
|
'compiled' => realpath(storage_path().'/framework/views'),
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
config.php
|
||||||
routes.php
|
routes.php
|
||||||
compiled.php
|
compiled.php
|
||||||
services.json
|
services.json
|
||||||
|
|
Loading…
Reference in New Issue