Skip to content

Commit

Permalink
chore: change web crawlers rule to noindex (#275)
Browse files Browse the repository at this point in the history
* chore: change web crawlers rule to `noindex`

* chore: bump version
  • Loading branch information
DiogoSoaress authored Feb 15, 2024
1 parent 1c8d512 commit f986764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "safe-homepage",
"homepage": "https://github.com/safe-global/safe-homepage",
"version": "1.3.13",
"version": "1.3.14",
"scripts": {
"build": "next build && next export",
"lint": "tsc && next lint",
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/MetaTags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const MetaTags = (props: Partial<typeof defaultMetaTags>) => {
<meta name="twitter:description" content={seo.description} />
<meta name="twitter:image" content={seo.image} />

{!IS_PRODUCTION && <meta name="robots" content="none" />}
{!IS_PRODUCTION && <meta name="robots" content="noindex" />}
</Head>
)
}
Expand Down

0 comments on commit f986764

Please sign in to comment.