mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Setup some stuff for config caching.
This commit is contained in:
parent
49cbb23ac5
commit
5ce23f1859
@ -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'),
|
||||
|
||||
];
|
||||
|
1
storage/framework/.gitignore
vendored
1
storage/framework/.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
config.php
|
||||
routes.php
|
||||
compiled.php
|
||||
services.json
|
||||
|
Loading…
x
Reference in New Issue
Block a user