- Now autoloading default configs
This commit is contained in:
parent
e36756b951
commit
4afe237ae6
|
@ -28,6 +28,9 @@
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"definitions": [
|
"definitions": [
|
||||||
"meta/definitions.php"
|
"meta/definitions.php"
|
||||||
|
],
|
||||||
|
"config": [
|
||||||
|
"meta/config.php"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'picea' => [
|
||||||
|
'asset' => [
|
||||||
|
'path' => "static",
|
||||||
|
'symlink' => [
|
||||||
|
'destination' => getenv("PUBLIC_PATH") . "/static"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
],
|
||||||
|
];
|
Loading…
Reference in New Issue