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