- WIP on picea's asset.

This commit is contained in:
Dave M. 2023-10-17 20:13:44 -04:00
parent 58a96c4b5c
commit e3de6146ec
2 changed files with 5 additions and 4 deletions

View File

@ -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", "" ]),
],
],

View File

@ -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>