- Added STATIC_PATH as default static env var

This commit is contained in:
Dave M. 2026-07-01 12:59:01 -04:00
parent d5337e5c07
commit cba35d97de

View File

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