2023-11-07 16:00:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'picea' => [
|
|
|
|
'asset' => [
|
2023-11-08 11:51:06 +00:00
|
|
|
'path' => getenv('ASSET_PATH') ?: 'static/',
|
2023-11-07 16:00:47 +00:00
|
|
|
'symlink' => [
|
2023-11-08 11:51:06 +00:00
|
|
|
'destination' => getenv("PUBLIC_PATH") . DIRECTORY_SEPARATOR . "static"
|
2023-11-07 16:00:47 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
],
|
|
|
|
];
|