Skip to content

Commit

Permalink
add env variable for compiled view path
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Nov 21, 2018
1 parent c09519f commit 5ea6fe1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
|
*/

'compiled' => realpath(storage_path('framework/views')),
'compiled' => env(
'VIEW_COMPILED_PATH',
realpath(storage_path('framework/views'))
),

];

0 comments on commit 5ea6fe1

Please sign in to comment.