- Now autoloading default configs

This commit is contained in:
Dave Mc Nicoll 2023-11-07 11:00:47 -05:00
parent e36756b951
commit 4afe237ae6
2 changed files with 15 additions and 0 deletions

View File

@ -28,6 +28,9 @@
"autoload": {
"definitions": [
"meta/definitions.php"
],
"config": [
"meta/config.php"
]
}
}

12
meta/config.php Normal file
View File

@ -0,0 +1,12 @@
<?php
return [
'picea' => [
'asset' => [
'path' => "static",
'symlink' => [
'destination' => getenv("PUBLIC_PATH") . "/static"
]
]
],
];