fix(config): updated config value w/ empty string key

Dotenv does not allow empty string keys; this would result in an ambiguous error when running post-install composer scripts and loading the app itself. Fixed by adding the actual .env key name.

Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
Miguel Nogueira 2023-02-25 23:52:26 +00:00
parent 4bf8190fe6
commit 2b7909caa4
No known key found for this signature in database
GPG Key ID: 3C6A7E29AF26D370

View File

@ -68,8 +68,8 @@ return [
],
'pusher' => [
'beams_instance_id' => env(''),
'beams_secret_key' => 'Your Secret Key',
'beams_instance_id' => env('BEAMS_INSTANCE_ID', null),
'beams_secret_key' => env('BEAMS_SECRET_KEY', null),
],
'cpanel' => [