Skip to content

Commit 190e4d0

Browse files
authored
remove googlebot noindex from index.html (#6407)
1 parent cfd2c16 commit 190e4d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs_app/src/index.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@
3232

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

0 commit comments

Comments
 (0)