Skip to content

Commit

Permalink
forcing string for not yet set api key
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-butti committed Jul 9, 2023
1 parent 8656a32 commit 3f0e136
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 3f0e136

Please sign in to comment.