Skip to content

Commit 3229199

Browse files
committed
updated base directory for leaf veins
1 parent 4a3ef63 commit 3229199

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/core/controller.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class Controller {
1111
public function __construct() {
1212
$this->veins = new Template;
1313
$this->veins->configure([
14-
"veins_dir" => "views/",
15-
"cache_dir" => "views/build/"
14+
"veins_dir" => "app/views/",
15+
"cache_dir" => "app/views/build/"
1616
]);
1717
}
1818

@@ -23,7 +23,7 @@ public function __construct() {
2323
*
2424
* @return void
2525
*/
26-
public function configure($config = ["veins_dir" => "views/", "cache_dir" => "views/build/"]) {
26+
public function configure($config = ["veins_dir" => "app/views/", "cache_dir" => "app/views/build/"]) {
2727
$this->veins->configure($config);
2828
}
2929

0 commit comments

Comments
 (0)