Commit 5ce23f18 authored by Taylor Otwell's avatar Taylor Otwell

Setup some stuff for config caching.

parent 49cbb23a
......@@ -15,9 +15,9 @@ return [
'files' => [
__DIR__.'/../app/Providers/AppServiceProvider.php',
__DIR__.'/../app/Providers/EventServiceProvider.php',
__DIR__.'/../app/Providers/RouteServiceProvider.php',
realpath(__DIR__.'/../app/Providers/AppServiceProvider.php'),
realpath(__DIR__.'/../app/Providers/EventServiceProvider.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'),
];
config.php
routes.php
compiled.php
services.json
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment