- WIP on Lean's autoload component
This commit is contained in:
parent
74d88dc8bf
commit
58a96c4b5c
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
use Lean\Console\Lib\DatabaseMigrations;
|
use Lean\Console\Lib\DatabaseMigrations;
|
||||||
|
|
||||||
|
$path = dirname(__DIR__, 2);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'lean.console' => [
|
'lean.console' => [
|
||||||
'picea' => [
|
'picea' => [
|
||||||
|
@ -9,10 +11,19 @@ return [
|
||||||
|
|
||||||
'view' => [
|
'view' => [
|
||||||
[
|
[
|
||||||
'path' => getenv("PROJECT_PATH") . implode(DIRECTORY_SEPARATOR, [ "", "vendor", "mcnd" , "lean-console" , "view" ]),
|
'path' => implode(DIRECTORY_SEPARATOR, [ $path , "view", '' ]),
|
||||||
'order' => 99,
|
'order' => 99,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'asset' => [
|
||||||
|
'source' => [
|
||||||
|
[
|
||||||
|
'path' => implode(DIRECTORY_SEPARATOR, [ $path, "asset", '' ]),
|
||||||
|
'order' => 10
|
||||||
|
]
|
||||||
|
],
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
'ulmus' => [],
|
'ulmus' => [],
|
||||||
|
|
|
@ -14,7 +14,9 @@
|
||||||
<title>{{ title() }}</title>
|
<title>{{ title() }}</title>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
{% include "lean-console/base/asset/lean.css" %}
|
{% asset "lean-console/lean-console-bw.css" %}
|
||||||
|
|
||||||
|
{# include "lean-console/lean-console-bw.css" #}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{% section "head" %}{% endsection %}
|
{% section "head" %}{% endsection %}
|
||||||
|
|
Loading…
Reference in New Issue