1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

hotfix for search indexing

* allow all indexing for now
* SSR build will always have the meta robots tag because it is never build on actual hostname
This commit is contained in:
Matthias Kretschmann 2019-09-10 11:27:41 +02:00
parent 5dcc2f8260
commit 1fc8df518f
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -107,9 +107,9 @@ const MetaTags = ({
<meta name="twitter:image" content={image} />
{/* Prevent search engine indexing except for live */}
{location.hostname !== 'docs.oceanprotocol.com' && (
{/* {location.hostname !== 'docs.oceanprotocol.com' && (
<meta name="robots" content="noindex,nofollow" />
)}
)} */}
</Helmet>
)