Skip to content

Commit

Permalink
Merge pull request #15 from ARCANEDEV/patch-config
Browse files Browse the repository at this point in the history
Updating SEO-Helper config file
  • Loading branch information
arcanedev-maroc authored Jul 27, 2016
2 parents 4bb7e7f + 6186999 commit 969988d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _docs/3-Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ After you've published the config file `config/seo-helper.php`, you can customiz
```php
'misc' => [
'canonical' => true,
'robots' => ! env('APP_DEBUG', false),
'robots' => config('app.env') !== 'production',
'default' => [
'viewport' => 'width=device-width, initial-scale=1',
'author' => '', // https://plus.google.com/[YOUR PERSONAL G+ PROFILE HERE]
Expand Down
2 changes: 1 addition & 1 deletion config/seo-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*/
'misc' => [
'canonical' => true,
'robots' => ! env('APP_DEBUG', false), // Tell robots not to index the content if it's not on production
'robots' => config('app.env') !== 'production', // Tell robots not to index the content if it's not on production
'default' => [
'viewport' => 'width=device-width, initial-scale=1', // Responsive design thing
'author' => '', // https://plus.google.com/[YOUR PERSONAL G+ PROFILE HERE]
Expand Down

0 comments on commit 969988d

Please sign in to comment.