Skip to content

Commit

Permalink
remove googlebot noindex from index.html (#6407)
Browse files Browse the repository at this point in the history
  • Loading branch information
snapwich committed May 17, 2021
1 parent cfd2c16 commit 190e4d0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs_app/src/index.html
Expand Up @@ -32,9 +32,7 @@

<script>
// Dynamically, pre-emptively, add `noindex`, which will be removed when the doc is ready and valid
var tag = document.createElement('meta'); tag.name = 'googlebot'; tag.content = 'noindex';
document.head.appendChild(tag);
tag = document.createElement('meta'); tag.name = 'robots'; tag.content = 'noindex';
var tag = document.createElement('meta'); tag.name = 'robots'; tag.content = 'noindex';
document.head.appendChild(tag);
</script>

Expand Down

0 comments on commit 190e4d0

Please sign in to comment.