Skip to content

Commit

Permalink
Merge pull request #41 from roberto-butti/fix/default-string-config
Browse files Browse the repository at this point in the history
forcing string for not yet set api key
  • Loading branch information
RicLeP committed Jul 11, 2023
2 parents 8656a32 + 3f0e136 commit e96a012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/storyblok.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
| in the editor or when debug mode is enabled.
|
*/
'api_preview_key' => env('STORYBLOK_PREVIEW_API_KEY'),
'api_preview_key' => env('STORYBLOK_PREVIEW_API_KEY', ''),

/*
|--------------------------------------------------------------------------
Expand All @@ -23,7 +23,7 @@
| This key is used when your website is live and debug is off.
|
*/
'api_public_key' => env('STORYBLOK_PUBLIC_API_KEY'),
'api_public_key' => env('STORYBLOK_PUBLIC_API_KEY', ''),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit e96a012

Please sign in to comment.