- Fixed configs paths

This commit is contained in:
Dave M. 2023-11-08 06:51:06 -05:00
parent 58bc2211ad
commit d5337e5c07
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
return [
'picea' => [
'asset' => [
'path' => "static",
'path' => getenv('ASSET_PATH') ?: 'static/',
'symlink' => [
'destination' => getenv("PUBLIC_PATH") . "/static"
'destination' => getenv("PUBLIC_PATH") . DIRECTORY_SEPARATOR . "static"
]
]
],