Setup some stuff for config caching.
This commit is contained in:
@@ -15,9 +15,9 @@ return [
|
|||||||
|
|
||||||
'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 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'paths' => [base_path('resources/templates')],
|
'paths' => [
|
||||||
|
realpath(base_path('resources/templates'))
|
||||||
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@@ -26,6 +28,6 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'compiled' => storage_path().'/framework/views',
|
'compiled' => realpath(storage_path().'/framework/views'),
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
1
storage/framework/.gitignore
vendored
1
storage/framework/.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
config.php
|
||||||
routes.php
|
routes.php
|
||||||
compiled.php
|
compiled.php
|
||||||
services.json
|
services.json
|
||||||
|
|||||||
Reference in New Issue
Block a user