- WIP on picea's asset.
This commit is contained in:
parent
58a96c4b5c
commit
e3de6146ec
|
@ -7,7 +7,7 @@ $path = dirname(__DIR__, 2);
|
||||||
return [
|
return [
|
||||||
'lean.console' => [
|
'lean.console' => [
|
||||||
'picea' => [
|
'picea' => [
|
||||||
'context' => "Lean\\Console\\View",
|
'context' => Lean\Console\View::class,
|
||||||
|
|
||||||
'view' => [
|
'view' => [
|
||||||
[
|
[
|
||||||
|
@ -31,14 +31,14 @@ return [
|
||||||
'tell' => [
|
'tell' => [
|
||||||
'json' => [
|
'json' => [
|
||||||
[
|
[
|
||||||
'path' => getenv("PROJECT_PATH") . "/vendor/mcnd/lean-console/meta/i18n",
|
'path' => implode(DIRECTORY_SEPARATOR, [ $path, "meta", "i18n", "" ]),
|
||||||
'order' => 99,
|
'order' => 99,
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
'routes' => [
|
'routes' => [
|
||||||
'Lean\\Console\\Controller' => getenv("PROJECT_PATH") . "/vendor/mcnd/lean-console/src/Controller/",
|
'Lean\\Console\\Controller' => implode(DIRECTORY_SEPARATOR, [ $path, "src", "Controller", "" ]),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,9 @@
|
||||||
|
|
||||||
<title>{{ title() }}</title>
|
<title>{{ title() }}</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href='{% asset "lean-console/lean-console-bw.css" %}'>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
{% asset "lean-console/lean-console-bw.css" %}
|
|
||||||
|
|
||||||
{# include "lean-console/lean-console-bw.css" #}
|
{# include "lean-console/lean-console-bw.css" #}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue