From d5337e5c07d3e7d70cbef8d6363c52531ca85a86 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Wed, 8 Nov 2023 06:51:06 -0500 Subject: [PATCH] - Fixed configs paths --- meta/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/config.php b/meta/config.php index b177b01..d231413 100644 --- a/meta/config.php +++ b/meta/config.php @@ -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" ] ] ],